changeset 11333 | e83aff248c17 |
parent 11202 | f974fe896921 |
child 11600 | 76454cbc11e4 |
--- a/mercurial/repair.py Wed Jun 09 12:41:44 2010 -1000 +++ b/mercurial/repair.py Thu Jun 10 15:23:31 2010 -0500 @@ -17,7 +17,7 @@ backupdir = repo.join("strip-backup") if not os.path.isdir(backupdir): os.mkdir(backupdir) - name = os.path.join(backupdir, "%s-%s" % (short(node), suffix)) + name = os.path.join(backupdir, "%s-%s.hg" % (short(node), suffix)) return changegroup.writebundle(cg, name, "HG10BZ") def _collectfiles(repo, striprev):