##// END OF EJS Templates
rebase: move state serialization to use unfiltered repo...
Durham Goode -
r31619:91ddb33d default
parent child Browse files
Show More
@@ -169,7 +169,7 b' class rebaseruntime(object):'
169 self._writestatus(f)
169 self._writestatus(f)
170
170
171 def _writestatus(self, f):
171 def _writestatus(self, f):
172 repo = self.repo
172 repo = self.repo.unfiltered()
173 f.write(repo[self.originalwd].hex() + '\n')
173 f.write(repo[self.originalwd].hex() + '\n')
174 f.write(repo[self.target].hex() + '\n')
174 f.write(repo[self.target].hex() + '\n')
175 f.write(repo[self.external].hex() + '\n')
175 f.write(repo[self.external].hex() + '\n')
General Comments 0
You need to be logged in to leave comments. Login now