Fix import error when running on OSX

Change-Id: I2d24f0cbff4d44b9c55113cf2f42bc5c8ed53f98
diff --git a/TestON/core/teston.py b/TestON/core/teston.py
index 5bc702b..ae6fc4e 100644
--- a/TestON/core/teston.py
+++ b/TestON/core/teston.py
@@ -179,7 +179,7 @@
                                               options = driver_options)
 
         if not connect_result:
-            self.log.error("Exiting form the test execution because the connecting to the "+component+" component failed.")
+            self.log.error("Exiting from the test execution because the connecting to the "+component+" component failed.")
             self.exit()
 
         vars(self)[component] = driverObject
@@ -441,6 +441,7 @@
             self.exit()
 
         result = re.sub("(.*)drivers","",result)
+        result = re.sub("\/\/","/",result)
         result = re.sub("\.py","",result)
         result = re.sub("\.pyc","",result)
         result = re.sub("\/",".",result)