mercurial/repair.py
changeset 33043 18c2489ac96d
parent 33042 dbc2ee17053e
child 33087 fcd1c483f5ea
--- a/mercurial/repair.py	Thu Jun 22 21:27:57 2017 -0700
+++ b/mercurial/repair.py	Thu Jun 22 15:00:19 2017 -0700
@@ -211,12 +211,8 @@
             if not isinstance(gen, bundle2.unbundle20):
                 txnname = "strip\n%s" % util.hidepassword(tmpbundleurl)
             with repo.transaction(txnname) as tr:
-                if isinstance(gen, bundle2.unbundle20):
-                    bundle2.applybundle(repo, gen, tr, source='strip',
-                                        url=tmpbundleurl)
-                else:
-                    bundle2.applybundle1(repo, gen, tr, 'strip', tmpbundleurl,
-                                         emptyok=True)
+                bundle2.applybundle(repo, gen, tr, source='strip',
+                                    url=tmpbundleurl, emptyok=True)
             if not repo.ui.verbose:
                 repo.ui.popbuffer()
             f.close()