commit | c000c150eae946a26d315c71cd15283e678c258a | [log] [tgz] |
---|---|---|
author | Ales Komarek <akomarek@mirantis.com> | Fri Dec 23 15:32:54 2016 +0100 |
committer | Ales Komarek <akomarek@mirantis.com> | Fri Dec 23 15:36:37 2016 +0100 |
tree | 022707416c46f43f72536ab992406daa6345a449 | |
parent | 0e558ee30998e405ddc27669cdc5b1b208a0eeda [diff] [blame] |
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