Skip to content

Commit

Permalink
Merge pull request #154 from gpoesia/master
Browse files Browse the repository at this point in the history
Fix doctest string for fuzzy_with_tokens.
  • Loading branch information
pganssle committed Dec 4, 2015
2 parents b46e721 + 96e94b7 commit 8be9aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dateutil/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def _parse(self, timestr, dayfirst=None, yearfirst=None, fuzzy=False,
>>> from dateutil.parser import parse
>>> parse("Today is January 1, 2047 at 8:21:00AM", fuzzy_with_tokens=True)
(datetime.datetime(2011, 1, 1, 8, 21), (u'Today is ', u' ', u'at '))
(datetime.datetime(2047, 1, 1, 8, 21), (u'Today is ', u' ', u'at '))
"""
if fuzzy_with_tokens:
Expand Down

0 comments on commit 8be9aed

Please sign in to comment.