summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-03-28 18:33:29 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 09:51:06 -0400
commitdf8d8d4292684d6ffa7474f1e201aed486f02b53 (patch)
treec661bf9b33de5288afe4f63347a2a9c768ef98eb /scripts
parent2956e2f5e3f63d279f5dae2a995265364d3e6db1 (diff)
downloaddjango-df8d8d4292684d6ffa7474f1e201aed486f02b53.tar.gz
Fixed E128 flake8 warnings in django/.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/manage_translations.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/manage_translations.py b/scripts/manage_translations.py
index df1545a020..9dde4dcf09 100644
--- a/scripts/manage_translations.py
+++ b/scripts/manage_translations.py
@@ -169,10 +169,8 @@ if __name__ == "__main__":
parser = ArgumentParser()
parser.add_argument('cmd', nargs=1, choices=RUNABLE_SCRIPTS)
- parser.add_argument("-r", "--resources", action='append',
- help="limit operation to the specified resources")
- parser.add_argument("-l", "--languages", action='append',
- help="limit operation to the specified languages")
+ parser.add_argument("-r", "--resources", action='append', help="limit operation to the specified resources")
+ parser.add_argument("-l", "--languages", action='append', help="limit operation to the specified languages")
options = parser.parse_args()
eval(options.cmd[0])(options.resources, options.languages)