changeset 26761 | 8270ee357dd9 |
parent 26760 | a18ee7da38c2 |
child 26779 | aaa33ec3c951 |
--- a/mercurial/exchange.py Sat Oct 17 10:26:34 2015 -0700 +++ b/mercurial/exchange.py Sat Oct 17 11:37:08 2015 -0700 @@ -1832,6 +1832,8 @@ if isinstance(cg, bundle2.unbundle20): bundle2.processbundle(repo, cg, lambda: tr) + elif isinstance(cg, streamclone.streamcloneapplier): + cg.apply(repo) else: cg.apply(repo, 'clonebundles', url) tr.close()