aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools/deploy.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside-tools/deploy.py')
-rw-r--r--sources/pyside-tools/deploy.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/sources/pyside-tools/deploy.py b/sources/pyside-tools/deploy.py
index f5197b6cf..0aea807a8 100644
--- a/sources/pyside-tools/deploy.py
+++ b/sources/pyside-tools/deploy.py
@@ -99,11 +99,9 @@ def main(main_file: Path = None, name: str = None, config_file: Path = None, ini
if not dry_run:
logging.info("[DEPLOY] Deploying application")
- command_str = python.create_executable(
- source_file=config.source_file,
- extra_args=config.extra_args,
- config=config,
- )
+ command_str = python.create_executable(source_file=config.source_file,
+ extra_args=config.extra_args,
+ config=config)
except Exception:
print(f"[DEPLOY] Exception occurred: {traceback.format_exc()}")
finally: