Submitter | phabricator |
---|---|
Date | Feb. 17, 2018, 9:54 a.m. |
Message ID | <4b523d205d2fc1f1c6845999a82705ee@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28018/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/hgweb/server.py b/mercurial/hgweb/server.py --- a/mercurial/hgweb/server.py +++ b/mercurial/hgweb/server.py @@ -273,7 +273,7 @@ def openlog(opt, default): if opt and opt != '-': - return open(opt, 'a') + return open(opt, 'ab') return default class MercurialHTTPServer(_mixin, httpservermod.httpserver, object):