]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/distrib/make_installer.py
Added regex to WXINC line (patch from Markus G)
[wxWidgets.git] / wxPython / distrib / make_installer.py
index c8750b4e80e736ee8132069dc4f4a3232036ce00..78cba8bd899c9e3d575e7317c0137377ebbaad59 100644 (file)
@@ -181,9 +181,16 @@ begin
     if not RegQueryStringValue(HKEY_LOCAL_MACHINE,
                                'Software\Python\PythonCore\%(PYTHONVER)s\InstallPath',
                                '', PythonDir) then begin
-        MsgBox('No installation of Python %(PYTHONVER)s found.  Aborting...',
-               mbConfirmation, MB_OK);
-        Result := false;
+
+        if not RegQueryStringValue(HKEY_CURRENT_USER,
+                                   'Software\Python\PythonCore\%(PYTHONVER)s\InstallPath',
+                                   '', PythonDir) then begin
+
+            MsgBox('No installation of Python %(PYTHONVER)s found.  Aborting...',
+                   mbConfirmation, MB_OK);
+            Result := false;
+        end else
+            Result := true;
     end else
         Result := true;
 end;