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

Commit

Permalink
Merge pull request #3 from VIP-LES/develop
Browse files Browse the repository at this point in the history
Fixed csv file path
  • Loading branch information
Skyman authored Mar 29, 2017
2 parents def4319 + e616988 commit cee6579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def exit_gracefully(self, signum, frame):
missionTime = datetime.now()

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

writer.writerow([missionTime])
Expand Down

0 comments on commit cee6579

Please sign in to comment.