diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-03 10:08:55 -0800 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-03 10:08:55 -0800 |
| commit | c347f78cc1b2a06958f692f0622deceac534dc6b (patch) | |
| tree | c91fa9a8b5843249e2e8e6165848aae0c9fb4b17 /extras | |
| parent | 7288e1b02b2504b1694fe14df2d81e6a354c5610 (diff) | |
Fixed all E226 violations
Diffstat (limited to 'extras')
| -rwxr-xr-x | extras/csrf_migration_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/csrf_migration_helper.py b/extras/csrf_migration_helper.py index 818c1263b7..38dee93735 100755 --- a/extras/csrf_migration_helper.py +++ b/extras/csrf_migration_helper.py @@ -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): |
