Submitter | Pulkit Goyal |
---|---|
Date | Nov. 2, 2016, 10:15 p.m. |
Message ID | <b0e4b8169c8f8080cee7.1478124918@pulkit-goyal> |
Download | mbox | patch |
Permalink | /patch/17294/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff -r 0b45aa3edc2c -r b0e4b8169c8f mercurial/scmposix.py --- a/mercurial/scmposix.py Thu Nov 03 02:09:38 2016 +0530 +++ b/mercurial/scmposix.py Thu Nov 03 02:17:01 2016 +0530 @@ -4,6 +4,7 @@ import sys from . import ( + encoding, osutil, ) @@ -36,6 +37,6 @@ def userrcpath(): if sys.platform == 'plan9': - return [os.environ['home'] + '/lib/hgrc'] + return [encoding.environ['home'] + '/lib/hgrc'] else: return [os.path.expanduser('~/.hgrc')]