Originally this was lists within a list:
print results
[['aaa664847', 'Completed', 'location', 'mode', '2014-xx-ddT20:00:00.000']
['aaa665487', 'Completed', 'location', 'mode', '2014-xx-ddT19:00:00.000']
['aaa661965', 'Completed', 'location', 'mode', '2014-xx-ddT18:00:00.000']]
However, I needed to join the elements within the nested list which then prints out like this:
print results1
['aaa664847, Completed, location, mode, 2014-xx-ddT20:00:00.000']
['aaa665487, Completed, location, mode, 2014-xx-ddT19:00:00.000']
['aaa661965, Completed, location, mode, 2014-xx-ddT18:00:00.000']
I need to get the results back into a list within a list:
[['aaa664847, Completed, location, mode, 2014-xxddT20:00:00.000'],
['aaa665487, Completed, location, mode, 2014-xx-ddT19:00:00.000']]
results1?results1is probably a list as well and he forgot outermost brackets