diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-10-06 16:28:36 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-10-06 16:28:36 +0200 |
commit | ee6c9f95e1e5cf118b0bdf6abc8376bd95bc7dcf (patch) | |
tree | 8a4432614610f77768efeb234cee4c80dbb253f6 /youtube_dl | |
parent | c1c9a79c49e8656f3244744e6f4e336e47a03206 (diff) |
Remove superfluous parenthesis
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 1f5f75e30..856e9ac92 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -314,7 +314,7 @@ class YoutubeDL(object): if date not in 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): - return (u'%(title)s) has already been recorded in archive' + return (u'%(title)s has already been recorded in archive' % info_dict) return None |