Skip to content
This repository was archived by the owner on Sep 29, 2021. It is now read-only.

Commit cee6579

Browse files
authored
Merge pull request #3 from VIP-LES/develop
Fixed csv file path
2 parents def4319 + e616988 commit cee6579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def exit_gracefully(self, signum, frame):
2929
missionTime = datetime.now()
3030

3131
for m in modules.keys():
32-
f = open('%s.csv' % m, 'wb')
32+
f = open('/data/%s.csv' % m, 'wb')
3333
writer = csv.writer(f, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)
3434

3535
writer.writerow([missionTime])

0 commit comments

Comments
 (0)