Sun, 15 Jan 2017 13:59:11 +0100
Little fix determining the PyQt tools path on Windows, if the tools are installed in parallel to eric.
Utilities/__init__.py | file | annotate | diff | comparison | revisions |
--- a/Utilities/__init__.py Sat Jan 14 14:12:42 2017 +0100 +++ b/Utilities/__init__.py Sun Jan 15 13:59:11 2017 +0100 @@ -1006,7 +1006,7 @@ cur_path = os.path.join(os.curdir, filename) if os.path.exists(cur_path): if os.access(cur_path, os.X_OK): - return cur_path + return os.path.abspath(cur_path) path = os.getenv('PATH')