diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-18 11:39:39 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-18 11:39:39 -0500 |
commit | 06927801374c1825f799c6532535678b553eef7d (patch) | |
tree | 05556233b24fee44cdd30512c6f91ace282e2a1b /generate_release.py | |
parent | a7c1f2a34ec5592597d7b09c4b240dfcf968273f (diff) | |
download | yt-local-06927801374c1825f799c6532535678b553eef7d.tar.lz yt-local-06927801374c1825f799c6532535678b553eef7d.tar.xz yt-local-06927801374c1825f799c6532535678b553eef7d.zip |
pep8
Diffstat (limited to 'generate_release.py')
-rw-r--r-- | generate_release.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generate_release.py b/generate_release.py index 06c348b..cb2df94 100644 --- a/generate_release.py +++ b/generate_release.py @@ -63,7 +63,7 @@ def wine_run_shell(command): def wine_run(command_parts): if os.name == 'posix': - command_parts = ['wine',] + command_parts + command_parts = ['wine', ] + command_parts if subprocess.run(command_parts).returncode != 0: raise Exception('Got nonzero exit code from command') |