##// END OF EJS Templates
localrepo: refer to dirstateguard by its new name
Augie Fackler -
r30492:77cd647b default
parent child Browse files
Show More
@@ -31,6 +31,7 b' from . import ('
31 31 cmdutil,
32 32 context,
33 33 dirstate,
34 dirstateguard,
34 35 encoding,
35 36 error,
36 37 exchange,
@@ -1141,7 +1142,7 b' class localrepository(object):'
1141 1142 wlock = self.wlock()
1142 1143 lock = self.lock()
1143 1144 if self.svfs.exists("undo"):
1144 dsguard = cmdutil.dirstateguard(self, 'rollback')
1145 dsguard = dirstateguard.dirstateguard(self, 'rollback')
1145 1146
1146 1147 return self._rollback(dryrun, force, dsguard)
1147 1148 else:
General Comments 0
You need to be logged in to leave comments. Login now