summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/mailstore/body_parser.py
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 14:59:32 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 17:00:34 +0200
commit798ffc624f0a2aa034846a322823caaf3d6f3837 (patch)
tree4a67d9d3b6bb9f70e6c921ea21ac3261cea9a715 /service/pixelated/adapter/mailstore/body_parser.py
parent224a4a7cd94d3a1eb825908e33feb10e72ad1a31 (diff)
Fixed pep8.
Diffstat (limited to 'service/pixelated/adapter/mailstore/body_parser.py')
-rw-r--r--service/pixelated/adapter/mailstore/body_parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/pixelated/adapter/mailstore/body_parser.py b/service/pixelated/adapter/mailstore/body_parser.py
index 893daac9..c79e11a4 100644
--- a/service/pixelated/adapter/mailstore/body_parser.py
+++ b/service/pixelated/adapter/mailstore/body_parser.py
@@ -27,7 +27,7 @@ class BodyParser(object):
def parsed_content(self):
parser = Parser()
- text=''
+ text = ''
text += 'Content-Type: %s\n' % self._content_type
if self._content_transfer_encoding is not None:
text += 'Content-Transfer-Encoding: %s\n' % self._content_transfer_encoding
@@ -38,4 +38,4 @@ class BodyParser(object):
result = unicode(parsed_body.get_payload(decode=True), encoding='utf-8')
- return unicode(result) \ No newline at end of file
+ return unicode(result)