projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1c9a79
)
Remove superfluous parenthesis
author
Philipp Hagemeister
<phihag@phihag.de>
Sun, 6 Oct 2013 14:28:36 +0000
(16:28 +0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Sun, 6 Oct 2013 14:28:36 +0000
(16:28 +0200)
youtube_dl/YoutubeDL.py
patch
|
blob
|
history
diff --git
a/youtube_dl/YoutubeDL.py
b/youtube_dl/YoutubeDL.py
index 1f5f75e309393caf39626259b65b4919c0011adf..856e9ac929eb3512bedf6d0daf3f10f9558e25ad 100644
(file)
--- 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