Skip to content

Commit

Permalink
Add 'Sept' for 'September'
Browse files Browse the repository at this point in the history
Due to an error with my Google Sheets table, I found that Google (and [DIN 5008](https://www.din-5008-richtlinien.de/startseite/datum/)) use `Sept` as abbreviation for `September`, but `dateparser` only understood `Sep`. It looks like both `Sept` and `Sep` are valid.

This PR adds `Sept` as variant of `September`.
  • Loading branch information
wulmer committed Aug 25, 2022
1 parent ffb9a2d commit c71092a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dateparser/data/date_translation_data/de.py
Expand Up @@ -37,6 +37,7 @@
],
"september": [
"sep",
"sept",
"september"
],
"october": [
Expand Down

0 comments on commit c71092a

Please sign in to comment.