Skip to content
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.

Commit

Permalink
Fix PEP8 E126
Browse files Browse the repository at this point in the history
  • Loading branch information
duggan committed Mar 6, 2016
1 parent 7fc0fe4 commit 7ffbe47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pontoon/cmd/pontoon_image.py
Expand Up @@ -55,7 +55,7 @@ def list(self):
if self.args['--with-ids']:
name = s.name[:27] + "..." if len(s.name) > 30 else s.name
ui.message(" - %-10s %-10s %-35s %s" % (
str(s.id) + ':', s.distribution, name, s.slug))
str(s.id) + ':', s.distribution, name, s.slug))
else:
name = s.name[:37] + "..." if len(s.name) > 40 else s.name
ui.message(" - %-10s %-45s %s" % (
Expand Down

0 comments on commit 7ffbe47

Please sign in to comment.