equal
deleted
inserted
replaced
1680 renames = [(vfs, x, undoname(x)) for vfs, x in self._journalfiles()] |
1680 renames = [(vfs, x, undoname(x)) for vfs, x in self._journalfiles()] |
1681 if report: |
1681 if report: |
1682 rp = report |
1682 rp = report |
1683 else: |
1683 else: |
1684 rp = self.ui.warn |
1684 rp = self.ui.warn |
1685 vfsmap = {'plain': self.vfs} # root of .hg/ |
1685 vfsmap = {'plain': self.vfs, 'store': self.svfs} # root of .hg/ |
1686 # we must avoid cyclic reference between repo and transaction. |
1686 # we must avoid cyclic reference between repo and transaction. |
1687 reporef = weakref.ref(self) |
1687 reporef = weakref.ref(self) |
1688 # Code to track tag movement |
1688 # Code to track tag movement |
1689 # |
1689 # |
1690 # Since tags are all handled as file content, it is actually quite hard |
1690 # Since tags are all handled as file content, it is actually quite hard |