changeset 9694 | 8269fe2d48f6 |
parent 9031 | 3b76321aa0de |
child 9910 | 6f92997dbdca |
child 10263 | 25e572394f5c |
--- a/mercurial/hgweb/common.py Mon Nov 02 10:19:14 2009 +0100 +++ b/mercurial/hgweb/common.py Mon Nov 02 10:20:04 2009 +0100 @@ -31,8 +31,8 @@ responses = BaseHTTPRequestHandler.responses return responses.get(code, ('Error', 'Unknown error'))[0] -def statusmessage(code): - return '%d %s' % (code, _statusmessage(code)) +def statusmessage(code, message=None): + return '%d %s' % (code, message or _statusmessage(code)) def get_mtime(repo_path): store_path = os.path.join(repo_path, ".hg")