##// END OF EJS Templates
py3: handle keyword arguments correctly in bundlerepo.py...
Pulkit Goyal -
r35403:b1c9853e default
parent child Browse files
Show More
@@ -541,10 +541,10 b' def getremotechanges(ui, repo, other, on'
541 and other.capable('bundle2'))
541 and other.capable('bundle2'))
542 if canbundle2:
542 if canbundle2:
543 kwargs = {}
543 kwargs = {}
544 kwargs['common'] = common
544 kwargs[r'common'] = common
545 kwargs['heads'] = rheads
545 kwargs[r'heads'] = rheads
546 kwargs['bundlecaps'] = exchange.caps20to10(repo)
546 kwargs[r'bundlecaps'] = exchange.caps20to10(repo)
547 kwargs['cg'] = True
547 kwargs[r'cg'] = True
548 b2 = other.getbundle('incoming', **kwargs)
548 b2 = other.getbundle('incoming', **kwargs)
549 fname = bundle = changegroup.writechunks(ui, b2._forwardchunks(),
549 fname = bundle = changegroup.writechunks(ui, b2._forwardchunks(),
550 bundlename)
550 bundlename)
General Comments 0
You need to be logged in to leave comments. Login now