Fix import issue.

Primarily manifests when there are multiple TestON directories in your path

Change-Id: Ic3300952025e24aa07b8826dc5d2b97eb9c7b930
diff --git a/TestON/bin/cli.py b/TestON/bin/cli.py
index ed1c796..a02871b 100755
--- a/TestON/bin/cli.py
+++ b/TestON/bin/cli.py
@@ -50,9 +50,8 @@
 introduction = "TestON is the testing framework \nDeveloped by Paxterra Solutions (www.paxterrasolutions.com)"
 __builtin__.COLORS = False
 
-path = re.sub("teston$", "", os.getcwd())
-sys.path.append(path+"/Core")
-sys.path.append("../")
+path = re.sub( "/bin$", "", sys.path[0] )
+sys.path.insert( 1, path )
 from core.teston import *
 
 class CLI( threading.Thread,Cmd,object ):