summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-01-08 17:23:10 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-01-08 17:23:10 +0100
commit661a807c65a154eccdddb875b45e4782ca86132c (patch)
treeafb085e13232e7f93b5cb683641851b22bdfd979
parent6d58c4546ebcf6a55dcb80cf0aefe747b7f80ee7 (diff)
Release 2012.01.08b2012.01.08b
-rw-r--r--LATEST_VERSION2
-rwxr-xr-xyoutube-dl10
-rwxr-xr-xyoutube_dl/__init__.py2
3 files changed, 7 insertions, 7 deletions
diff --git a/LATEST_VERSION b/LATEST_VERSION
index a4c711a25f..227ab0d36c 100644
--- a/LATEST_VERSION
+++ b/LATEST_VERSION
@@ -1 +1 @@
-2012.01.08
+2012.01.08b
diff --git a/youtube-dl b/youtube-dl
index b22f1cac27..be599a2b29 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -18,7 +18,7 @@ __authors__ = (
)
__license__ = 'Public Domain'
-__version__ = '2012.01.08'
+__version__ = '2012.01.08b'
UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'
@@ -2652,7 +2652,7 @@ class YoutubeUserIE(InfoExtractor):
else:
video_ids = video_ids[playliststart:playlistend]
- self._downloader.to_screen("[youtube] user %s: Collected %d video ids (downloading %d of them)" %
+ self._downloader.to_screen(u"[youtube] user %s: Collected %d video ids (downloading %d of them)" %
(username, all_ids_count, len(video_ids)))
for video_id in video_ids:
@@ -4170,7 +4170,7 @@ def updateSelf(downloader, filename):
if not os.access(filename, os.W_OK):
sys.exit('ERROR: no write permissions on %s' % filename)
- downloader.to_screen('Updating to latest version...')
+ downloader.to_screen(u'Updating to latest version...')
try:
try:
@@ -4179,7 +4179,7 @@ def updateSelf(downloader, filename):
vmatch = re.search("__version__ = '([^']+)'", newcontent)
if vmatch is not None and vmatch.group(1) == __version__:
- downloader.to_screen('youtube-dl is up-to-date (' + __version__ + ')')
+ downloader.to_screen(u'youtube-dl is up-to-date (' + __version__ + ')')
return
finally:
urlh.close()
@@ -4195,7 +4195,7 @@ def updateSelf(downloader, filename):
except (IOError, OSError), err:
sys.exit('ERROR: unable to overwrite current version')
- downloader.to_screen('Updated youtube-dl. Restart youtube-dl to use the new version.')
+ downloader.to_screen(u'Updated youtube-dl. Restart youtube-dl to use the new version.')
def parseOpts():
# Deferred imports
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index fb45adcf65..be599a2b29 100755
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -18,7 +18,7 @@ __authors__ = (
)
__license__ = 'Public Domain'
-__version__ = '2012.01.08'
+__version__ = '2012.01.08b'
UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'