aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/patchwork/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/patchwork/models.py b/apps/patchwork/models.py
index cfc875f..793cb4e 100644
--- a/apps/patchwork/models.py
+++ b/apps/patchwork/models.py
@@ -258,7 +258,7 @@ class Patch(models.Model):
if postscript:
body += '---\n' + postscript.strip() + '\n'
- body += self.content
+ body += '\n' + self.content
mail = PatchMbox(body)
mail['Subject'] = self.name