##// END OF EJS Templates
push: add a ``pushop.stepsdone`` attribute...
Pierre-Yves David -
r21901:8612c4ab default
parent child Browse files
Show More
@@ -61,6 +61,9 b' class pushoperation(object):'
61 self.newbranch = newbranch
61 self.newbranch = newbranch
62 # did a local lock get acquired?
62 # did a local lock get acquired?
63 self.locallocked = None
63 self.locallocked = None
64 # step already performed
65 # (used to check what steps have been already performed through bundle2)
66 self.stepsdone = set()
64 # Integer version of the push result
67 # Integer version of the push result
65 # - None means nothing to push
68 # - None means nothing to push
66 # - 0 means HTTP error
69 # - 0 means HTTP error
General Comments 0
You need to be logged in to leave comments. Login now