From d97d12e781dde4101f45c15a3860b01aac2f2aca Mon Sep 17 00:00:00 2001 From: Thomas-Karl Pietrowski Date: Wed, 3 Feb 2016 21:43:44 +0100 Subject: Fixing the hotfix: Importing needed "os" and at least replacing _qmake_path with _qmake_command Well, not more left to say. --- qtinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qtinfo.py') diff --git a/qtinfo.py b/qtinfo.py index 998f92385..68b7ab491 100644 --- a/qtinfo.py +++ b/qtinfo.py @@ -1,4 +1,4 @@ -import sys +import os, sys import subprocess from distutils.spawn import find_executable @@ -10,7 +10,7 @@ class QtInfo(object): self._qmake_command = [find_executable("qmake"),] def getQMakePath(self): - qmake_path = self._qmake_path[0] # Guessing the first of the commands is qmake + qmake_path = self._qmake_command[0] # Guessing the first of the commands is qmake if not os.path.exists(qmake_path): # Making it here a bit more failsave. qmake_path = find_executable(qmake_path) # In case someone just passed the name of the executable I'll search for it now. if qmake_path == None: # If we couldn't resolv the location of the executable -- cgit v1.2.3