unbundle: move streamclone error case away from bundle[12] cases
The bundle1 and bundle2 cases are more similar, and having the
streamclone case in between is distracting.
--- a/mercurial/commands.py Fri Jun 16 10:36:43 2017 -0700
+++ b/mercurial/commands.py Fri Jun 16 10:38:14 2017 -0700
@@ -5316,6 +5316,11 @@
for fname in fnames:
f = hg.openpath(ui, fname)
gen = exchange.readbundle(ui, f, fname)
+ if isinstance(gen, streamclone.streamcloneapplier):
+ raise error.Abort(
+ _('packed bundles cannot be applied with '
+ '"hg unbundle"'),
+ hint=_('use "hg debugapplystreamclonebundle"'))
if isinstance(gen, bundle2.unbundle20):
with repo.transaction('unbundle') as tr:
try:
@@ -5331,11 +5336,6 @@
changes = [r.get('return', 0)
for r in op.records['changegroup']]
modheads = changegroup.combineresults(changes)
- elif isinstance(gen, streamclone.streamcloneapplier):
- raise error.Abort(
- _('packed bundles cannot be applied with '
- '"hg unbundle"'),
- hint=_('use "hg debugapplystreamclonebundle"'))
else:
modheads = gen.apply(repo, 'unbundle', 'bundle:' + fname)