Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed override of the long time format for Australian locale #180

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed override of the long time format for Australian locale
Previous implementation accidentally removed all other formats.
  • Loading branch information
idpaterson committed Aug 20, 2016
commit 9750a7db6363a165d2c1785da2c248ebab4b7a71
4 changes: 1 addition & 3 deletions parsedatetime/pdt_locales/en_AU.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
'short': 'd/MM/yy',
}

timeFormats = {
'long': timeFormats['full'],
}
timeFormats['long'] = timeFormats['full']

dp_order = ['d', 'm', 'y']