From: Philipp Hagemeister Date: Sun, 6 Oct 2013 14:28:36 +0000 (+0200) Subject: Remove superfluous parenthesis X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=ee6c9f95e1e5cf118b0bdf6abc8376bd95bc7dcf;p=youtube-dl Remove superfluous parenthesis --- 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