##// END OF EJS Templates
histedit: add a stateobj variable to histeditstate class...
Pulkit Goyal -
r38525:18f348e0 default
parent child Browse files
Show More
@@ -207,6 +207,7 b' from mercurial import ('
207 207 registrar,
208 208 repair,
209 209 scmutil,
210 state as statemod,
210 211 util,
211 212 )
212 213 from mercurial.utils import (
@@ -304,6 +305,7 b' class histeditstate(object):'
304 305 self.lock = lock
305 306 self.wlock = wlock
306 307 self.backupfile = None
308 self.stateobj = statemod.cmdstate(repo, 'histedit-state')
307 309 if replacements is None:
308 310 self.replacements = []
309 311 else:
General Comments 0
You need to be logged in to leave comments. Login now