diff -r 0e330d7d9f53 -r ae53ecc47414 mercurial/wireproto.py --- a/mercurial/wireproto.py Mon Mar 28 17:16:00 2016 -0500 +++ b/mercurial/wireproto.py Mon Mar 28 14:41:29 2016 -0700 @@ -685,7 +685,7 @@ if repo.ui.configbool('experimental', 'bundle2-advertise', True): capsblob = bundle2.encodecaps(bundle2.getrepocaps(repo)) caps.append('bundle2=' + urllib.quote(capsblob)) - caps.append('unbundle=%s' % ','.join(changegroupmod.bundlepriority)) + caps.append('unbundle=%s' % ','.join(bundle2.bundlepriority)) caps.append( 'httpheader=%d' % repo.ui.configint('server', 'maxhttpheaderlen', 1024)) if repo.ui.configbool('experimental', 'httppostargs', False):