##// END OF EJS Templates
sslutil: change comment and logged message for found ca cert file...
sslutil: change comment and logged message for found ca cert file Future patches will change _defaultcacerts() to do something on platforms that aren't OS X. Change the comment and logged message to reflect the future.

File last commit:

r28943:417380aa default
r29482:4e72995f default
Show More
mockblackbox.py
17 lines | 332 B | text/x-python | PythonLexer
from __future__ import absolute_import
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