Submitter | phabricator |
---|---|
Date | Dec. 16, 2019, 6:32 a.m. |
Message ID | <8def6b34d2d79f1512a501c27571515c@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43863/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/util.py b/mercurial/util.py --- a/mercurial/util.py +++ b/mercurial/util.py @@ -2050,7 +2050,8 @@ checkosfilename = checkwinfilename timer = time.clock else: - checkosfilename = platform.checkosfilename + # mercurial.windows doesn't have platform.checkosfilename + checkosfilename = platform.checkosfilename # pytype: disable=module-attr timer = time.time if safehasattr(time, "perf_counter"):