also pep8-test the test script; restore pep8 for update.py

This commit is contained in:
Radovan Bast
2015-06-26 15:34:28 +02:00
parent da02f8eeb1
commit 30c9d38842
3 changed files with 2 additions and 4 deletions

View File

@ -61,7 +61,7 @@ def align_options(options):
l = len(opt[0])
s = []
for opt in options:
s.append(' %s%s %s' % (opt[0], ' '*(l - len(opt[0])), opt[1]))
s.append(' %s%s %s' % (opt[0], ' ' * (l - len(opt[0])), opt[1]))
return '\n'.join(s)