##// END OF EJS Templates
bundle2: fix configuration name mismatch...
Durham Goode -
r21256:750c7c14 default
parent child Browse files
Show More
@@ -537,7 +537,7 b' def pull(repo, remote, heads=None, force'
537 lock = pullop.repo.lock()
537 lock = pullop.repo.lock()
538 try:
538 try:
539 _pulldiscovery(pullop)
539 _pulldiscovery(pullop)
540 if (pullop.repo.ui.configbool('server', 'bundle2', False)
540 if (pullop.repo.ui.configbool('experimental', 'bundle2-exp', False)
541 and pullop.remote.capable('bundle2-exp')):
541 and pullop.remote.capable('bundle2-exp')):
542 _pullbundle2(pullop)
542 _pullbundle2(pullop)
543 if 'changegroup' in pullop.todosteps:
543 if 'changegroup' in pullop.todosteps:
General Comments 0
You need to be logged in to leave comments. Login now