summaryrefslogtreecommitdiff
path: root/alot/buffers.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-01-03 17:00:41 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-01-03 17:00:41 +0000
commit7fe9f5fdf3981824e1260665fec82423f275074b (patch)
tree029addf6d6f580b205ed27f96c3ad6aa849e9492 /alot/buffers.py
parent50f65c540ce3c02b5b0cff94fd357f5a804495ab (diff)
pep8
Diffstat (limited to 'alot/buffers.py')
-rw-r--r--alot/buffers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index f25b8594..58a03213 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -323,7 +323,8 @@ class TagListBuffer(Buffer):
self.isinitialized = True
lines = list()
- displayedtags = sorted(filter(self.filtfun, self.tags), key=unicode.lower)
+ displayedtags = sorted(filter(self.filtfun, self.tags),
+ key=unicode.lower)
for (num, b) in enumerate(displayedtags):
tw = widgets.TagWidget(b)
lines.append(urwid.Columns([('fixed', tw.width(), tw)]))