##// END OF EJS Templates
dirstate: copyedit exception for no beginparentchange call
Siddharth Agarwal -
r22459:0c7b018d default
parent child Browse files
Show More
@@ -257,8 +257,8 b' class dirstate(object):'
257 See localrepo.setparents()
257 See localrepo.setparents()
258 """
258 """
259 if self._parentwriters == 0:
259 if self._parentwriters == 0:
260 raise ValueError("cannot set dirstate parent without " +
260 raise ValueError("cannot set dirstate parent without "
261 " calling dirstate.begingparentchange")
261 "calling dirstate.beginparentchange")
262
262
263 self._dirty = self._dirtypl = True
263 self._dirty = self._dirtypl = True
264 oldp2 = self._pl[1]
264 oldp2 = self._pl[1]
General Comments 0
You need to be logged in to leave comments. Login now