diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-01 16:16:58 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-01 16:16:58 -0500 |
commit | 699d16c4f731cb3d807d8e845f91e534a56823de (patch) | |
tree | 7e6c916653a838b4993ba695fb394388000159eb /setup-files | |
parent | 04576da02aa7cb31ce1e6971ce6ed5c1bfc3a8dc (diff) | |
download | librevideoconverter-699d16c4f731cb3d807d8e845f91e534a56823de.tar.lz librevideoconverter-699d16c4f731cb3d807d8e845f91e534a56823de.tar.xz librevideoconverter-699d16c4f731cb3d807d8e845f91e534a56823de.zip |
setup-files/windows/setup.py: pep8
Diffstat (limited to 'setup-files')
-rw-r--r-- | setup-files/windows/setup.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/setup-files/windows/setup.py b/setup-files/windows/setup.py index 0e013d3..6dbdc67 100644 --- a/setup-files/windows/setup.py +++ b/setup-files/windows/setup.py @@ -129,19 +129,23 @@ class bdist_nsis(Command): cmd_line.append(script_path) if subprocess.call(cmd_line) != 0: - print "ERROR creating the 1 stage installer, quitting" + print("ERROR creating the 1 stage installer, quitting") return + + setup( windows=[ - {'script': 'lvc/windows/exe_main.py', - 'dest_base': 'lvc', - 'company_name': 'Participatory Culture Foundation', + { + 'script': 'lvc/windows/exe_main.py', + 'dest_base': 'lvc', + 'company_name': 'Participatory Culture Foundation', }, ], console=[ - {'script': 'lvc/windows/exe_main.py', - 'dest_base': 'lvcdebug', - 'company_name': 'Participatory Culture Foundation', + { + 'script': 'lvc/windows/exe_main.py', + 'dest_base': 'lvcdebug', + 'company_name': 'Participatory Culture Foundation', }, ], data_files=data_files(), |