diff options
-rw-r--r-- | installclass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py index 68a7e37d5..d5882b4cc 100644 --- a/installclass.py +++ b/installclass.py @@ -497,7 +497,7 @@ def availableClasses(showHidden=0): # append the location of installclasses to the python path so we # can import them - sys.path.append(path) + sys.path.insert(0, path) files = os.listdir(path) done = {} |