[PATCH] patchbomb: break lines > 80 chars (coding style)
Christian Ebert
blacktrash at gmx.net
Tue Dec 18 21:52:01 UTC 2007
# HG changeset patch
# User Christian Ebert <blacktrash at gmx.net>
# Date 1198014627 -3600
# Node ID 4e5b7065b97370f9123eeb332c45652bf88d4b93
# Parent 1b35bc1c19688248b90a617d1a4d3ef05ef022d6
patchbomb: break lines > 80 chars (coding style)
diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py
--- a/hgext/patchbomb.py
+++ b/hgext/patchbomb.py
@@ -233,7 +233,8 @@ def patchbomb(ui, repo, *revs, **opts):
cmdutil.setremoteconfig(ui, opts)
if opts.get('outgoing') and opts.get('bundle'):
- raise util.Abort(_("--outgoing mode always on with --bundle; do not re-specify --outgoing"))
+ raise util.Abort(_("--outgoing mode always on with --bundle;"
+ " do not re-specify --outgoing"))
if opts.get('outgoing') or opts.get('bundle'):
if len(revs) > 1:
@@ -284,7 +285,8 @@ def patchbomb(ui, repo, *revs, **opts):
jumbo = []
msgs = []
- ui.write(_('This patch series consists of %d patches.\n\n') % len(patches))
+ ui.write(_('This patch series consists of %d patches.\n\n')
+ % len(patches))
for p, i in zip(patches, xrange(len(patches))):
jumbo.extend(p)
More information about the Mercurial-devel
mailing list