[channel9] strip 'session_day'
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 13 Oct 2015 19:18:30 +0000 (21:18 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Tue, 13 Oct 2015 19:18:30 +0000 (21:18 +0200)
youtube_dl/extractor/channel9.py

index 79fd0a30ed9dde5389e37db393de829bafdced9c..1ce004932bb9de3225c0a964149acb994aeabc1e 100644 (file)
@@ -158,7 +158,7 @@ class Channel9IE(InfoExtractor):
 
     def _extract_session_day(self, html):
         m = re.search(r'<li class="day">\s*<a href="/Events/[^"]+">(?P<day>[^<]+)</a>\s*</li>', html)
-        return m.group('day') if m is not None else None
+        return m.group('day').strip() if m is not None else None
 
     def _extract_session_room(self, html):
         m = re.search(r'<li class="room">\s*(?P<room>.+?)\s*</li>', html)