##// END OF EJS Templates
exchange: fix indentation level
Pierre-Yves David -
r21554:7bcf4ada default
parent child Browse files
Show More
@@ -624,8 +624,8 b' def _pullchangeset(pullop):'
624 cg = pullop.remote.changegroup(pullop.fetch, 'pull')
624 cg = pullop.remote.changegroup(pullop.fetch, 'pull')
625 elif not pullop.remote.capable('changegroupsubset'):
625 elif not pullop.remote.capable('changegroupsubset'):
626 raise util.Abort(_("partial pull cannot be done because "
626 raise util.Abort(_("partial pull cannot be done because "
627 "other repository doesn't support "
627 "other repository doesn't support "
628 "changegroupsubset."))
628 "changegroupsubset."))
629 else:
629 else:
630 cg = pullop.remote.changegroupsubset(pullop.fetch, pullop.heads, 'pull')
630 cg = pullop.remote.changegroupsubset(pullop.fetch, pullop.heads, 'pull')
631 pullop.cgresult = changegroup.addchangegroup(pullop.repo, cg, 'pull',
631 pullop.cgresult = changegroup.addchangegroup(pullop.repo, cg, 'pull',
General Comments 0
You need to be logged in to leave comments. Login now