From e780a01810a0a790494242855a0bdb843de836c9 Mon Sep 17 00:00:00 2001 From: Jethro Muller Date: Wed, 19 Sep 2018 09:55:32 +0200 Subject: [PATCH] Do not assume the day comes first --- ordering/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ordering/utils.py b/ordering/utils.py index 5258768..0476b7f 100644 --- a/ordering/utils.py +++ b/ordering/utils.py @@ -219,4 +219,4 @@ def _get_date(arg): if arg is None: return None - return parse_date_string(arg, dayfirst=True).date() + return parse_date_string(arg).date()