mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
Remove superfluous parenthesis
This commit is contained in:
parent
c1c9a79c49
commit
ee6c9f95e1
|
@ -314,7 +314,7 @@ class YoutubeDL(object):
|
||||||
if date not in dateRange:
|
if date not in dateRange:
|
||||||
return u'[download] %s upload date is not in range %s' % (date_from_str(date).isoformat(), dateRange)
|
return u'[download] %s upload date is not in range %s' % (date_from_str(date).isoformat(), dateRange)
|
||||||
if self.in_download_archive(info_dict):
|
if self.in_download_archive(info_dict):
|
||||||
return (u'%(title)s) has already been recorded in archive'
|
return (u'%(title)s has already been recorded in archive'
|
||||||
% info_dict)
|
% info_dict)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue