summaryrefslogtreecommitdiff
path: root/alot/buffer.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-09-04 19:21:44 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2011-09-05 21:19:16 +0100
commit3dee96165454fdd4e56136691f7ea2067550b884 (patch)
treef34cf2f75fa4ca234b9d431802d3138a9330718d /alot/buffer.py
parent6653de8462338b122e75b636f4de8abf5e2fde65 (diff)
fix: forgot to change call to renamed method
Diffstat (limited to 'alot/buffer.py')
-rw-r--r--alot/buffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/buffer.py b/alot/buffer.py
index eb476530..e44db1bd 100644
--- a/alot/buffer.py
+++ b/alot/buffer.py
@@ -282,7 +282,7 @@ class TagListBuffer(Buffer):
displayedtags = filter(self.filtfun, self.tags)
for (num, b) in enumerate(displayedtags):
tw = widgets.TagWidget(b)
- lines.append(urwid.Columns([('fixed', tw.len(), tw)]))
+ lines.append(urwid.Columns([('fixed', tw.width(), tw)]))
self.taglist = urwid.ListBox(urwid.SimpleListWalker(lines))
self.body = self.taglist