diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2016-11-03 23:37:00 +0100 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2016-11-04 01:10:23 +0100 |
commit | af6b277d2887412bac7f4e8e9e70bb5f417a3f54 (patch) | |
tree | 8098a1deca950a6925ddcb696f4d54f9f55ebb37 /packaging | |
parent | [Lint] Convert all python double quotes to single quotes (diff) | |
download | deluge-af6b277d2887412bac7f4e8e9e70bb5f417a3f54.tar.xz deluge-af6b277d2887412bac7f4e8e9e70bb5f417a3f54.zip |
[Lint] Add flake8-quotes to tox and fix bad quotes
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/win32/deluge-bbfreeze.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/win32/deluge-bbfreeze.py b/packaging/win32/deluge-bbfreeze.py index e67399f50..dd69f13a2 100644 --- a/packaging/win32/deluge-bbfreeze.py +++ b/packaging/win32/deluge-bbfreeze.py @@ -184,7 +184,7 @@ for script in script_list: # Copy version info to file for nsis script. with open('VERSION.tmp', 'w') as ver_file: - ver_file.write("build_version = \"%s\"" % build_version) + ver_file.write('build_version = "%s"' % build_version) # Create the install and uninstall file list for NSIS. filedir_list = [] |