diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2014-09-04 01:27:11 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2014-09-04 01:37:57 +0200 |
commit | 20b05ae595534514ae1a886088952b94816cf0b6 (patch) | |
tree | 7633bf25e6e1d6853415a18bdbb5c3e4adaa642d /minify_web_js.py | |
parent | Flake8 core and common files (diff) | |
download | deluge-20b05ae595534514ae1a886088952b94816cf0b6.tar.xz deluge-20b05ae595534514ae1a886088952b94816cf0b6.zip |
Remove unneeded ez_setup and 'isort' imports
Diffstat (limited to 'minify_web_js.py')
-rwxr-xr-x | minify_web_js.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/minify_web_js.py b/minify_web_js.py index 41d6c26b7..23b8fbb6a 100755 --- a/minify_web_js.py +++ b/minify_web_js.py @@ -1,8 +1,9 @@ #!/usr/bin/env python -import os -import sys import fileinput import fnmatch +import os +import sys + from slimit import minify """Minifies the Webui JS files |