Fixed all E226 violations

This commit is contained in:
Alex Gaynor 2013-11-03 10:08:55 -08:00
parent 7288e1b02b
commit c347f78cc1
51 changed files with 150 additions and 150 deletions

View file

@ -161,7 +161,7 @@ def make_template_info(filename, root_dirs):
relative_filenames from the supplied filename and root template directories
"""
return Template(filename,
[filename[len(d)+1:] for d in root_dirs if filename.startswith(d)])
[filename[len(d) + 1:] for d in root_dirs if filename.startswith(d)])
class Template(object):