hgext/histedit.py
changeset 38506 18f348e035fb
parent 38505 c6a2ce82e60b
child 38507 03e7ec8180f0
--- a/hgext/histedit.py	Sat Jun 30 07:10:49 2018 +0530
+++ b/hgext/histedit.py	Sat Jun 30 07:21:21 2018 +0530
@@ -207,6 +207,7 @@
     registrar,
     repair,
     scmutil,
+    state as statemod,
     util,
 )
 from mercurial.utils import (
@@ -304,6 +305,7 @@
         self.lock = lock
         self.wlock = wlock
         self.backupfile = None
+        self.stateobj = statemod.cmdstate(repo, 'histedit-state')
         if replacements is None:
             self.replacements = []
         else: