summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2013-03-09 16:53:55 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2013-03-09 16:54:30 +0000
commitb321cb23ecc0fa82e2d3234c4ca6327bf6e4ca1e (patch)
tree9f7bffbb855fbe1e72a065d607ddddcd86459b00
parenta0a16ded2139d5f7e37240c0eb4ac655cf09a01c (diff)
pep8 fixes
-rw-r--r--alot/commands/thread.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 7854e834..8dbdbdd3 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -164,12 +164,14 @@ class ReplyCommand(Command):
if self.groupreply:
if sender != mail['From']:
recipients.append(mail['From'])
- cleared = self.clear_my_address(my_addresses, mail.get_all('To', []))
+ cleared = self.clear_my_address(
+ my_addresses, mail.get_all('To', []))
recipients.append(cleared)
# copy cc for group-replies
if 'Cc' in mail:
- cc = self.clear_my_address(my_addresses, mail.get_all('Cc', []))
+ cc = self.clear_my_address(
+ my_addresses, mail.get_all('Cc', []))
envelope.add('Cc', decode_header(cc))
to = ', '.join(recipients)