setup: remove duplicate assignment of HGRCPATH

HGRCPATH is already set in localhgenv().
This commit is contained in:
Kevin Bullock 2017-10-23 21:30:59 -05:00
parent 4073f3374c
commit 1a166f93b9

View File

@ -249,8 +249,6 @@ def findhg():
# Fall back to trying the local hg installation.
hgenv = localhgenv()
# Don't source any system hgrc files when using the local hg.
hgenv['HGRCPATH'] = ''
hgcmd = [sys.executable, 'hg']
try:
retcode, out, err = runcmd(hgcmd + check_cmd, hgenv)