Submitter | phabricator |
---|---|
Date | Sept. 5, 2019, 6:57 p.m. |
Message ID | <abd8890f2a54f2679db1b32ffa9c448e@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41476/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/utils/procutil.py b/mercurial/utils/procutil.py --- a/mercurial/utils/procutil.py +++ b/mercurial/utils/procutil.py @@ -245,8 +245,11 @@ pycompat.fsencode(getattr(mainmod, '__file__', ''))) == 'hg'): _sethgexecutable(pycompat.fsencode(mainmod.__file__)) else: - exe = findexe('hg') or os.path.basename(sys.argv[0]) - _sethgexecutable(pycompat.fsencode(exe)) + exe = findexe('hg') + if exe: + _sethgexecutable(pycompat.fsencode(exe)) + else: + _sethgexecutable(os.path.basename(pycompat.sysargv[0])) return _hgexecutable def _sethgexecutable(path):