##// END OF EJS Templates
strip: compress bundle2 backup using BZ...
strip: compress bundle2 backup using BZ Storing uncompressed bundle on disk would be a regression. Strip backup using bundle2 are now compressed when requested.

File last commit:

r24705:0ead0a07 default
r26425:eb21b667 default
Show More
mockblackbox.py
11 lines | 229 B | text/x-python | PythonLexer
from mercurial import util
def makedate():
return 0, 0
def getuser():
return 'bob'
# mock the date and user apis so the output is always the same
def uisetup(ui):
util.makedate = makedate
util.getuser = getuser