diff options
Diffstat (limited to 'Mac/scripts/ConfigurePython.py')
-rw-r--r-- | Mac/scripts/ConfigurePython.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/ConfigurePython.py b/Mac/scripts/ConfigurePython.py index 4065b848be..8fd0a3c095 100644 --- a/Mac/scripts/ConfigurePython.py +++ b/Mac/scripts/ConfigurePython.py @@ -89,9 +89,9 @@ def gotopluginfolder(): """Go to the plugin folder, assuming we are somewhere in the Python tree""" import os - while not os.path.isdir(":Plugins"): + while not os.path.isdir(":Mac:Plugins"): os.chdir("::") - os.chdir(":Plugins") + os.chdir(":Mac:Plugins") if verbose: print "current directory is", os.getcwd() def loadtoolboxmodules(): |