# HG changeset patch # User Bryan O'Sullivan # Date 1181684376 25200 # Node ID d48e1b5f8265dda6285687a216868c579e6b6fd5 # Parent 8044be585b91a9bfe70a1891e246aef918d285d9 patchbomb: 0c61124ad877 moved setremoteconfig into cmdutil diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -229,7 +229,7 @@ def patchbomb(ui, repo, *revs, **opts): if not (revs or opts.get('rev') or opts.get('outgoing')): raise util.Abort(_('specify at least one changeset with -r or -o')) - commands.setremoteconfig(ui, 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"))