summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-01-20 15:54:24 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-01-20 16:04:37 -0800
commitac6e01e674ca9b25ee9090eee4e6b69c979b616f (patch)
tree792bcc2f32ecd5fc51ef51bf47044db141cd5bbb
parentd2497661acdb9ec0c24d672b5226da6d16f2fec3 (diff)
widgets/globals: Fix typo which would lead to AttributeError
-rw-r--r--alot/widgets/globals.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/widgets/globals.py b/alot/widgets/globals.py
index b4fae0c8..5c3c1ac7 100644
--- a/alot/widgets/globals.py
+++ b/alot/widgets/globals.py
@@ -307,7 +307,7 @@ class TagWidget(urwid.AttrMap):
return self.tag
def set_focussed(self):
- self.set_attr_map(self.attmap['focus'])
+ self.set_attr_map(self.attmaps['focus'])
def set_unfocussed(self):
- self.set_attr_map(self.attmap['normal'])
+ self.set_attr_map(self.attmaps['normal'])