EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 156d49a7 authored by Mussab Abdalla's avatar Mussab Abdalla
Browse files

read sub array of list

parent 526cba5d
No related branches found
No related tags found
2 merge requests!82Staging to master,!67Test staging
......@@ -24,7 +24,8 @@ def list_dir_items(filename):
with open(filename, newline='') as csvfile:
spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|')
for row in spamreader:
output_list.append(row)
for item in row:
output_list.append(item)
return output_list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment