Minor fix to pexpect

Change-Id: I4d26a5f0db03b613d7602c364a1d6d8e86fc2660
diff --git a/TestON/drivers/common/clidriver.py b/TestON/drivers/common/clidriver.py
index b178700..90b7e3e 100644
--- a/TestON/drivers/common/clidriver.py
+++ b/TestON/drivers/common/clidriver.py
@@ -479,7 +479,7 @@
             assert "cannot access" not in output
             assert "command not found" not in output
             main.log.debug( output )
-            lines = [ line for line in output.splitlines() ]
+            lines = [ line for line in output.split('\r\n') ]
             retValue = True
             if ignoreRoot:
                 lastIndex = -2