##// END OF EJS Templates
windows: don't return early from building the hgrc search path...
Matt Harbison -
r44376:fa3835a1 default
parent child Browse files
Show More
@@ -38,8 +38,7 b' def systemrcpath():'
38 38 value = util.lookupreg(
39 39 b'SOFTWARE\\Mercurial', None, winreg.HKEY_LOCAL_MACHINE
40 40 )
41 if not isinstance(value, bytes) or not value:
42 return rcpath
41 if value and isinstance(value, bytes):
43 42 value = util.localpath(value)
44 43 for p in value.split(pycompat.ospathsep):
45 44 if p.lower().endswith(b'mercurial.ini'):
General Comments 0
You need to be logged in to leave comments. Login now