Utilities/BackgroundClient.py

changeset 3540
b83fe0651bfd
parent 3444
118cb489304d
child 3591
2f2a4a76dd22
diff -r 0c2dc1446ebf -r b83fe0651bfd Utilities/BackgroundClient.py
--- 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()

eric ide

mercurial