Remove superfluous parenthesis
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 6 Oct 2013 14:28:36 +0000 (16:28 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 6 Oct 2013 14:28:36 +0000 (16:28 +0200)
youtube_dl/YoutubeDL.py

index 1f5f75e309393caf39626259b65b4919c0011adf..856e9ac929eb3512bedf6d0daf3f10f9558e25ad 100644 (file)
@@ -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