summaryrefslogtreecommitdiff
path: root/alot/buffers.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-12-17 11:36:39 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2013-02-19 10:10:08 +0000
commitadc5d6038e50a12a4fe3e5ee97340904295e1d40 (patch)
treeb3b3ecd90b7e60b775eab5bad85da2128780dcbf /alot/buffers.py
parent2b5580267e5fcf6d4e99ef79d9955dac2a3fa3f0 (diff)
pep8 fixes
Diffstat (limited to 'alot/buffers.py')
-rw-r--r--alot/buffers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index 50cbd0c3..bd8a9e82 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -155,7 +155,7 @@ class EnvelopeBuffer(Buffer):
if self.envelope.encrypt:
description = 'Yes'
encrypt_keys = self.envelope.encrypt_keys.values()
- if len(encrypt_keys) == 1:
+ if len(encrypt_keys) == 1:
description += ', with key '
elif len(encrypt_keys) > 1:
description += ', with keys '
@@ -395,8 +395,8 @@ class ThreadBuffer(Buffer):
# let urwid.ListBox focus this widget:
# The first parameter is a "size" tuple: that needs only to
# be iterable an is *never* used. i is the integer index
- # to focus. offset_inset is may be used to shift the visible area
- # so that the focus lies at given offset
+ # to focus. offset_inset is may be used to shift the
+ # visible area so that the focus lies at given offset
self.body.change_focus((0, 0), i,
offset_inset=0,
coming_from='above')