From 387055915546b6f62e3e8fb9fdc3e4017c7022a1 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Fri, 8 Feb 2013 14:40:02 +0100 Subject: [PATCH] fix typo --- modules/cragr/pages/accounts_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cragr/pages/accounts_list.py b/modules/cragr/pages/accounts_list.py index 142639b1..1432c69b 100644 --- a/modules/cragr/pages/accounts_list.py +++ b/modules/cragr/pages/accounts_list.py @@ -282,7 +282,7 @@ class AccountsList(CragrBasePage): matches = re.search('\s*([012]?[0-9]|3[01])\s*/\s*(0?[1-9]|1[012])\s*$', string) if matches is None: return self.fallback_date() - return date_guesser.guess(int(matches.group(1)), int(matches.group(2))) + return date_guesser.guess_date(int(matches.group(1)), int(matches.group(2))) def look_like_account_owner(self, string): """ Returns a date object built from a given day/month pair. """