Mercurial > public > mercurial-scm > hg
comparison mercurial/exchange.py @ 20971:557a083453c9
exchange: drop useless line break
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 11 Apr 2014 13:43:41 -0400 |
parents | 7a679918ee2b |
children | ef377f2e0ab9 |
comparison
equal
deleted
inserted
replaced
20970:70312c95f2f7 | 20971:557a083453c9 |
---|---|
207 pushop.ret = pushop.remote.unbundle(cg, remoteheads, | 207 pushop.ret = pushop.remote.unbundle(cg, remoteheads, |
208 'push') | 208 'push') |
209 else: | 209 else: |
210 # we return an integer indicating remote head count | 210 # we return an integer indicating remote head count |
211 # change | 211 # change |
212 pushop.ret = pushop.remote.addchangegroup(cg, 'push', | 212 pushop.ret = pushop.remote.addchangegroup(cg, 'push', pushop.repo.url()) |
213 pushop.repo.url()) | |
214 | 213 |
215 def _pushcomputecommonheads(pushop): | 214 def _pushcomputecommonheads(pushop): |
216 unfi = pushop.repo.unfiltered() | 215 unfi = pushop.repo.unfiltered() |
217 if pushop.ret: | 216 if pushop.ret: |
218 # push succeed, synchronize target of the push | 217 # push succeed, synchronize target of the push |