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-04 19:21:44 +0100
commitf1dd0703a18719e879e9d79d8a40dfc3d21d0273 (patch)
tree5c5199cc1f1fda5dd140f36faed1a2251c322bf4 /alot/buffer.py
parent4420c123e1d0c564b81cd455bbcc52d87597800b (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 dc37d5e2..1ea7766b 100644
--- a/alot/buffer.py
+++ b/alot/buffer.py
@@ -283,7 +283,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