##// END OF EJS Templates
push: `exchange.push` now returns the `pushoperation` object...
Pierre-Yves David -
r22616:cda85cfc default
parent child Browse files
Show More
@@ -211,7 +211,7 b' def push(repo, remote, force=False, revs'
211 if locallock is not None:
211 if locallock is not None:
212 locallock.release()
212 locallock.release()
213
213
214 return pushop.cgresult
214 return pushop
215
215
216 # list of steps to perform discovery before push
216 # list of steps to perform discovery before push
217 pushdiscoveryorder = []
217 pushdiscoveryorder = []
@@ -1592,7 +1592,7 b' class localrepository(object):'
1592 return util.hooks()
1592 return util.hooks()
1593
1593
1594 def push(self, remote, force=False, revs=None, newbranch=False):
1594 def push(self, remote, force=False, revs=None, newbranch=False):
1595 return exchange.push(self, remote, force, revs, newbranch)
1595 return exchange.push(self, remote, force, revs, newbranch).cgresult
1596
1596
1597 def stream_in(self, remote, requirements):
1597 def stream_in(self, remote, requirements):
1598 lock = self.lock()
1598 lock = self.lock()
General Comments 0
You need to be logged in to leave comments. Login now