summaryrefslogtreecommitdiffstats
path: root/minify_web_js.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2015-10-20 19:41:47 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2015-10-21 00:06:27 +0100
commit32bc20d8ce2b564a460cdc82ba0b9ebe8e05ed6b (patch)
tree2e8d7996f81ca4a900a36b1c3ccfe1f0884288f5 /minify_web_js.py
parent82ac1bdfe0553002ebe27e6f50d53f25594e00ff (diff)
downloaddeluge-32bc20d8ce2b564a460cdc82ba0b9ebe8e05ed6b.tar.gz
deluge-32bc20d8ce2b564a460cdc82ba0b9ebe8e05ed6b.tar.bz2
deluge-32bc20d8ce2b564a460cdc82ba0b9ebe8e05ed6b.zip
Fix pep8 across codebase
* Further whitespace fixes by autopep8 * Using pep8 v1.6.2 (not currently used by pyflakes) * Update config for pep8 and flake8 in tox.ini * A separate pep8 entry for running autopep8. The ignores prevent blank lines being added after docstrings. * .tox and E133 are ignored in flake8 by default.
Diffstat (limited to 'minify_web_js.py')
-rwxr-xr-xminify_web_js.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/minify_web_js.py b/minify_web_js.py
index a7dc665f5..0c8a98dde 100755
--- a/minify_web_js.py
+++ b/minify_web_js.py
@@ -34,7 +34,7 @@ if module_exists('closure'):
def minify_closure(file_in, file_out):
import subprocess
subprocess.call(['closure', '--js', file_in, '--js_output_file', file_out,
- '-W', 'QUIET'])
+ '-W', 'QUIET'])
elif module_exists('slimit'):
from slimit import minify
elif module_exists('jsmin'):