--- a/Utilities/BackgroundClient.py Sat Apr 26 10:36:09 2014 +0200 +++ b/Utilities/BackgroundClient.py Sat Apr 26 22:50:33 2014 +0200 @@ -50,7 +50,7 @@ @param module name to import (str) @return text result of the import action (str) """ - sys.path.append(path) + sys.path.insert(1, path) try: importedModule = __import__(module, globals(), locals(), [], 0) self.services[fn] = importedModule.initService()