Corrected an oversight of the most recent change. eric7

Sun, 25 Jul 2021 12:30:57 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 25 Jul 2021 12:30:57 +0200
branch
eric7
changeset 8476
87c0b6e6e118
parent 8475
f1f7646e8e24
child 8477
81e25fe19818

Corrected an oversight of the most recent change.

scripts/install.py file | annotate | diff | comparison | revisions
diff -r f1f7646e8e24 -r 87c0b6e6e118 scripts/install.py
--- a/scripts/install.py	Sun Jul 25 12:26:07 2021 +0200
+++ b/scripts/install.py	Sun Jul 25 12:30:57 2021 +0200
@@ -1764,7 +1764,7 @@
         localHg = os.path.join(sys.exec_prefix, "bin", "hg")
     for hg in (localHg, "hg"):
         with contextlib.suppress(OSError, subprocess.CalledProcessError):
-            hgOut = subprocess.check_output(["hg", "identify", "-i"])   # secok
+            hgOut = subprocess.check_output([hg, "identify", "-i"])   # secok
             hgOut = hgOut.decode()
             if hgOut:
                 break

eric ide

mercurial