Show More
@@ -252,7 +252,10 class histeditstate(object): | |||
|
252 | 252 | for replacement in self.replacements: |
|
253 | 253 | fp.write('%s%s\n' % (node.hex(replacement[0]), ''.join(node.hex(r) |
|
254 | 254 | for r in replacement[1]))) |
|
255 |
|
|
|
255 | backupfile = self.backupfile | |
|
256 | if not backupfile: | |
|
257 | backupfile = '' | |
|
258 | fp.write('%s\n' % backupfile) | |
|
256 | 259 | fp.close() |
|
257 | 260 | |
|
258 | 261 | def _load(self): |
@@ -890,6 +893,7 def _histedit(ui, repo, state, *freeargs | |||
|
890 | 893 | |
|
891 | 894 | def bootstrapcontinue(ui, state, opts): |
|
892 | 895 | repo = state.repo |
|
896 | if state.rules: | |
|
893 | 897 | action, currentnode = state.rules.pop(0) |
|
894 | 898 | |
|
895 | 899 | actobj = actiontable[action].fromrule(state, currentnode) |
General Comments 0
You need to be logged in to leave comments.
Login now