summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-02 18:20:28 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-02 18:20:28 +0100
commit9c4ca6f1ddc482ed2ef82b041737aa86e5bd26f9 (patch)
treebf42a83f1c4c00edccb1e6e054f47583e6d8b0fa
parent372538dbe849d2a73ffe05a622187acb81528f6a (diff)
downloadseivot-9c4ca6f1ddc482ed2ef82b041737aa86e5bd26f9.tar.gz
Fix left/right alignment.
-rwxr-xr-xseivots-summary2
1 files changed, 1 insertions, 1 deletions
diff --git a/seivots-summary b/seivots-summary
index 9c5341a..4425c54 100755
--- a/seivots-summary
+++ b/seivots-summary
@@ -61,7 +61,7 @@ class Table(object):
def align_cell(self, width, text, column):
h1, h2, fmt, left = self.columns[column]
- if not left:
+ if left:
return '%-*s' % (width, text)
else:
return'%*s' % (width, text)