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

Commit

Permalink
Fixed csv file path
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen committed Mar 29, 2017
1 parent def4319 commit e616988
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 e616988

Please sign in to comment.