about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-06 16:28:36 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-06 16:28:36 +0200
commitee6c9f95e1e5cf118b0bdf6abc8376bd95bc7dcf (patch)
tree8a4432614610f77768efeb234cee4c80dbb253f6
parentc1c9a79c49e8656f3244744e6f4e336e47a03206 (diff)
downloadyoutube-dl-ee6c9f95e1e5cf118b0bdf6abc8376bd95bc7dcf.tar.gz
youtube-dl-ee6c9f95e1e5cf118b0bdf6abc8376bd95bc7dcf.tar.xz
youtube-dl-ee6c9f95e1e5cf118b0bdf6abc8376bd95bc7dcf.zip
Remove superfluous parenthesis
-rw-r--r--youtube_dl/YoutubeDL.py2
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