Flake8 core and common files

* Added N802 to flake8 ignore as certain inherited funcs cannot be changed
   to lowercase and this unresolved warning hides other errors/warnings.
 * Include new header
This commit is contained in:
Calum Lind 2014-09-03 22:28:28 +01:00
parent 5d88504c34
commit 5167e93d12
44 changed files with 636 additions and 1277 deletions

View file

@ -4,7 +4,6 @@
#
import os
import re
import sys
from version import get_version
from subprocess import call
from datetime import datetime
@ -16,7 +15,7 @@ EXCLUSIONS = [
"deluge/tests",
]
webui_js_dir = "deluge/ui/web/js/deluge-all"
infiles_list= "infiles.list"
infiles_list = "infiles.list"
pot_filepath = os.path.join("deluge", "i18n", "deluge.pot")
re_exc_plugin_build = re.compile("deluge\/plugins\/.*\/build")
@ -55,7 +54,7 @@ with open(infiles_list, "wb") as f:
call(xgettext_cmd)
# find javascript files
js_to_translate=[]
js_to_translate = []
for (dirpath, dirnames, filenames) in os.walk(webui_js_dir):
for filename in filenames:
if os.path.splitext(filename)[1] == ".js":