Skip to content

Commit

Permalink
Merge pull request #59 from tomasra/master
Browse files Browse the repository at this point in the history
Fixed datetime column default format
  • Loading branch information
shymonk authored Oct 17, 2016
2 parents 3e2ecd1 + 0ad790d commit 033d23d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion table/columns/datetimecolumn.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class DatetimeColumn(Column):

DEFAULT_FORMAT = "%Y-%m-%d %H:%I:%S"
DEFAULT_FORMAT = "%Y-%m-%d %H:%M:%S"

def __init__(self, field, header=None, format=None, **kwargs):
self.format = format or DatetimeColumn.DEFAULT_FORMAT
Expand Down

0 comments on commit 033d23d

Please sign in to comment.