Skip to content

Commit

Permalink
removed split() from deploy commands (#6)
Browse files Browse the repository at this point in the history
Co-authored-by: chzar <[email protected]>
  • Loading branch information
chzar and chzar authored May 12, 2021
1 parent 35bf368 commit d22a448
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name='azwrap',
version='0.4',
version='0.5',
package_dir = {'': 'src'},
packages = find_packages(where='src'),
install_requires = ['pyfakefs']
Expand Down
2 changes: 1 addition & 1 deletion src/azwrap/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ def deploy(self, arm_template, scope: str, scope_type: DeploymentScope):
with Patcher() as patcher:
patcher.fs.add_real_directory(str(Path.home()))
patcher.fs.create_file(fake_template_path, contents=arm_json)
return self.run(commands[scope_type.value].split())
return self.run(commands[scope_type.value])

0 comments on commit d22a448

Please sign in to comment.