##// END OF EJS Templates
rebase: add potential divergent commit hashes to error message (issue5086)
rebase: add potential divergent commit hashes to error message (issue5086)

File last commit:

r28028:ac49ecb2 default
r28188:6411140a default
Show More
mockblackbox.py
14 lines | 284 B | text/x-python | PythonLexer
from mercurial import util
def makedate():
return 0, 0
def getuser():
return 'bob'
def getpid():
return 5000
# mock the date and user apis so the output is always the same
def uisetup(ui):
util.makedate = makedate
util.getuser = getuser
util.getpid = getpid