summary refs log tree commit diff
diff options
context:
space:
mode:
authorOle Ernst <olebowle@gmx.com>2014-07-23 10:00:50 +0200
committerOle Ernst <olebowle@gmx.com>2014-07-23 10:00:50 +0200
commit8c778adc39fbaa79a6e885532b933364c9952817 (patch)
tree222593b91f5ada2bb17c64c92cf34fcdc1e89976
parent71b6065009d2bbc0e25b46368e73ebd807d3fca0 (diff)
downloadyoutube-dl-8c778adc39fbaa79a6e885532b933364c9952817.tar.gz
youtube-dl-8c778adc39fbaa79a6e885532b933364c9952817.tar.xz
youtube-dl-8c778adc39fbaa79a6e885532b933364c9952817.zip
[gameone] simplify playlist extractor
-rw-r--r--youtube_dl/extractor/gameone.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/gameone.py b/youtube_dl/extractor/gameone.py
index 0a0fb19e6..12f757329 100644
--- a/youtube_dl/extractor/gameone.py
+++ b/youtube_dl/extractor/gameone.py
@@ -1,7 +1,6 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
-import datetime
 import re
 
 from .common import InfoExtractor
@@ -94,8 +93,7 @@ class GameOnePlaylistIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www\.)?gameone\.de(?:/tv)?/?$'
 
     def _real_extract(self, url):
-        this_year = datetime.date.today().year
-        webpage = self._download_webpage('http://www.gameone.de/tv/year/%d' % this_year, this_year)
+        webpage = self._download_webpage('http://www.gameone.de/tv', 'TV')
         max_id = max(map(int, re.findall(r'<a href="/tv/(\d+)"', webpage)))
         entries = [self.url_result('http://www.gameone.de/tv/%d' % video_id, 'GameOne') for video_id in range(max_id, 0, -1)]