Skip to content

Commit

Permalink
Fix datetime format to follow iso standard (#32)
Browse files Browse the repository at this point in the history
* Fix datetime format to follow iso standard

* v0.0.23
  • Loading branch information
akariv committed Oct 16, 2018
1 parent c039a74 commit ca63dac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dataflows/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.22
0.0.23
2 changes: 1 addition & 1 deletion dataflows/processors/dumpers/file_formats.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


DATE_FORMAT = '%Y-%m-%d'
DATETIME_FORMAT = '%Y-%m-%d %H:%M:%S'
DATETIME_FORMAT = '%Y-%m-%dT%H:%M:%SZ'
TIME_FORMAT = '%H:%M:%S'


Expand Down

0 comments on commit ca63dac

Please sign in to comment.