slight change to Dailymotion uploader regex (fix)
[youtube-dl] / youtube_dl / __init__.py
index b21416dafbd8495fca65612c64b4e6f6dfda1405..ad9a06c55a0cdf1279655e2a8be382cd6fe010d2 100644 (file)
@@ -1,6 +1,8 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
+from __future__ import with_statement
+
 __authors__  = (
        'Ricardo Garcia Gonzalez',
        'Danny Colligan',
@@ -19,7 +21,7 @@ __authors__  = (
        )
 
 __license__ = 'Public Domain'
-__version__ = '2012.09.27'
+__version__ = '2012.10.09'
 
 UPDATE_URL = 'https://raw.github.com/rg3/youtube-dl/master/youtube-dl'
 UPDATE_URL_VERSION = 'https://raw.github.com/rg3/youtube-dl/master/LATEST_VERSION'
@@ -328,6 +330,7 @@ def gen_extractors():
        """
        return [
                YoutubePlaylistIE(),
+               YoutubeChannelIE(),
                YoutubeUserIE(),
                YoutubeSearchIE(),
                YoutubeIE(),
@@ -355,6 +358,7 @@ def gen_extractors():
                MTVIE(),
                YoukuIE(),
                XNXXIE(),
+               GooglePlusIE(),
 
                GenericIE()
        ]