From: Philipp Hagemeister Date: Thu, 11 Dec 2014 09:29:30 +0000 (+0100) Subject: [utils] Add "yesterday" as a date keyword X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=f8795e102b35198db550432c2eee43a1c2571093;p=youtube-dl [utils] Add "yesterday" as a date keyword --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index a95d2c942..75f9594e6 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -712,8 +712,10 @@ def date_from_str(date_str): Return a datetime object from a string in the format YYYYMMDD or (now|today)[+-][0-9](day|week|month|year)(s)?""" today = datetime.date.today() - if date_str == 'now'or date_str == 'today': + if date_str in ('now', 'today'): return today + if date_str == 'yesterday': + return today - datetime.timedelta(days=1) match = re.match('(now|today)(?P[+-])(?P