# HG changeset patch # User Peter Arrenbrecht # Date 2008-11-07 09:18:55 # Node ID b05834d6be3c76ace23ea7f7bc5ca7690e600f64 # Parent e016b65fd2843027861afc64b060d7bda3345687 patchbomb: fix indentation diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -175,9 +175,9 @@ def patchbomb(ui, repo, *revs, **opts): raise ValueError if opts.get('attach'): - body = ('\n'.join(desc[1:]).strip() or - 'Patch subject is complete summary.') - body += '\n\n\n' + body = ('\n'.join(desc[1:]).strip() or + 'Patch subject is complete summary.') + body += '\n\n\n' if opts.get('plain'): while patch and patch[0].startswith('# '):