summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-30 14:07:32 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-30 14:07:32 +0200
commit48bfb5f2387ab47e1973d9db0782a9af66ffc4e6 (patch)
treec44e5689b01c775bbd7c2c6a415cda60df489cc4
parent97ebe8dcaf648534fa605c51c3ad8145c97d0a6c (diff)
downloadyoutube-dl-48bfb5f2387ab47e1973d9db0782a9af66ffc4e6.tar.gz
youtube-dl-48bfb5f2387ab47e1973d9db0782a9af66ffc4e6.tar.xz
youtube-dl-48bfb5f2387ab47e1973d9db0782a9af66ffc4e6.zip
[instagram] Fix title
-rw-r--r--youtube_dl/extractor/statigram.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/statigram.py b/youtube_dl/extractor/statigram.py
index 2f4aaaa50..ae9a63e8b 100644
--- a/youtube_dl/extractor/statigram.py
+++ b/youtube_dl/extractor/statigram.py
@@ -10,7 +10,7 @@ class StatigramIE(InfoExtractor):
         u'md5': u'deda4ff333abe2e118740321e992605b',
         u'info_dict': {
             u"uploader_id": u"videoseconds", 
-            u"title": u"Instagram photo by @videoseconds (Video)"
+            u"title": u"Instagram photo by @videoseconds"
         }
     }
 
@@ -27,7 +27,7 @@ class StatigramIE(InfoExtractor):
         html_title = self._html_search_regex(
             r'<title>(.+?)</title>',
             webpage, u'title')
-        title = html_title.rpartition(u' | Statigram')[0]
+        title = re.sub(r'(?: *\(Videos?\))? \| Statigram$', '', html_title)
         uploader_id = self._html_search_regex(
             r'@([^ ]+)', title, u'uploader name', fatal=False)
         ext = 'mp4'