summaryrefslogtreecommitdiff
path: root/alot/widgets.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/widgets.py')
-rw-r--r--alot/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/widgets.py b/alot/widgets.py
index 3f7d975c..b5af55a7 100644
--- a/alot/widgets.py
+++ b/alot/widgets.py
@@ -541,7 +541,7 @@ class MessageHeaderWidget(urwid.AttrMap):
class MessageBodyWidget(urwid.AttrMap):
"""displays printable parts of an email"""
- def __init__(self, msg, tab_width = 8):
+ def __init__(self, msg, tab_width=8):
bodytxt = message.extract_body(msg).replace('\t', ' ' * tab_width)
urwid.AttrMap.__init__(self, urwid.Text(bodytxt), 'message_body')