##// END OF EJS Templates
patchbomb: break lines > 80 chars (coding style)
Christian Ebert -
r5746:d3ef7e86 default
parent child Browse files
Show More
@@ -234,7 +234,8 b' def patchbomb(ui, repo, *revs, **opts):'
234
234
235 cmdutil.setremoteconfig(ui, opts)
235 cmdutil.setremoteconfig(ui, opts)
236 if opts.get('outgoing') and opts.get('bundle'):
236 if opts.get('outgoing') and opts.get('bundle'):
237 raise util.Abort(_("--outgoing mode always on with --bundle; do not re-specify --outgoing"))
237 raise util.Abort(_("--outgoing mode always on with --bundle;"
238 " do not re-specify --outgoing"))
238
239
239 if opts.get('outgoing') or opts.get('bundle'):
240 if opts.get('outgoing') or opts.get('bundle'):
240 if len(revs) > 1:
241 if len(revs) > 1:
@@ -285,7 +286,8 b' def patchbomb(ui, repo, *revs, **opts):'
285 jumbo = []
286 jumbo = []
286 msgs = []
287 msgs = []
287
288
288 ui.write(_('This patch series consists of %d patches.\n\n') % len(patches))
289 ui.write(_('This patch series consists of %d patches.\n\n')
290 % len(patches))
289
291
290 for p, i in zip(patches, xrange(len(patches))):
292 for p, i in zip(patches, xrange(len(patches))):
291 jumbo.extend(p)
293 jumbo.extend(p)
General Comments 0
You need to be logged in to leave comments. Login now