mercurial/scmposix.py
changeset 30276 c90a05124fae
parent 27483 39087ee88835
child 30309 4b1af1c867fa
--- a/mercurial/scmposix.py	Tue Nov 01 08:22:50 2016 +0000
+++ b/mercurial/scmposix.py	Thu Nov 03 02:17:01 2016 +0530
@@ -4,6 +4,7 @@
 import sys
 
 from . import (
+    encoding,
     osutil,
 )
 
@@ -34,6 +35,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')]