Fixed an issue causing an exception on Windows platforms. eric7

Mon, 19 Dec 2022 14:09:57 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 19 Dec 2022 14:09:57 +0100
branch
eric7
changeset 9625
2c760cdc6b64
parent 9624
b47dfa7a137d
child 9626
5bb5c85d71c3

Fixed an issue causing an exception on Windows platforms.

src/eric7/SystemUtilities/QtUtilities.py file | annotate | diff | comparison | revisions
--- a/src/eric7/SystemUtilities/QtUtilities.py	Sun Dec 18 19:33:46 2022 +0100
+++ b/src/eric7/SystemUtilities/QtUtilities.py	Mon Dec 19 14:09:57 2022 +0100
@@ -266,7 +266,7 @@
             exe += ".exe"
     else:
         if OSUtilities.isWindowsPlatform():
-            exe = OSUtilities.getWindowsExecutablePath(toolname)
+            exe = FileSystemUtilities.getWindowsExecutablePath(toolname)
         else:
             exe = toolname
 

eric ide

mercurial