diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2009-02-12 22:11:48 +1100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2009-02-12 22:14:43 +1100 |
commit | cd874f3ef896a54c47fc4a483739b00871e5a4b4 (patch) | |
tree | 48bc2241dd066fc081bdcb4c484875d81b147905 | |
parent | 8de3e85466899d83adca7bafe9057a821458c5b4 (diff) | |
download | patchwork-cd874f3ef896a54c47fc4a483739b00871e5a4b4.tar patchwork-cd874f3ef896a54c47fc4a483739b00871e5a4b4.tar.gz |
[mbox] Add extra newline after patch comment
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rw-r--r-- | apps/patchwork/models.py | 2 |
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 |