Escaped new line character and added MCP processes

Change-Id: If537b3b908d7690542282765c5dba37674cfe691
diff --git a/src/com/mirantis/mk/python.groovy b/src/com/mirantis/mk/python.groovy
index b8ea694..88b624d 100644
--- a/src/com/mirantis/mk/python.groovy
+++ b/src/com/mirantis/mk/python.groovy
@@ -158,7 +158,7 @@
 
 def read_table_file(file):
     table_file = open(file, 'r')
-    raw_data = table_file.read().split('\n')
+    raw_data = table_file.read().split('\\n')
     table_file.close()
     return raw_data