##// END OF EJS Templates
bundle: allow bundle command to use changegroup3 in tests...
Jun Wu -
r31831:1da9b2a4 default
parent child Browse files
Show More
@@ -1377,9 +1377,11 b' def bundle(ui, repo, fname, dest=None, *'
1377 1377 bcompression = 'UN'
1378 1378 bversion = 'HG10' + bcompression
1379 1379 bcompression = None
1380 elif cgversion in ('02', '03'):
1381 bversion = 'HG20'
1380 1382 else:
1381 assert cgversion == '02'
1382 bversion = 'HG20'
1383 raise error.ProgrammingError(
1384 'bundle: unexpected changegroup version %s' % cgversion)
1383 1385
1384 1386 # TODO compression options should be derived from bundlespec parsing.
1385 1387 # This is a temporary hack to allow adjusting bundle compression
General Comments 0
You need to be logged in to leave comments. Login now