Strip hash info from URL when making requests (Fixes #1038)
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 13 Jul 2013 20:52:12 +0000 (22:52 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 13 Jul 2013 20:52:12 +0000 (22:52 +0200)
youtube_dl/extractor/common.py

index 52ae98be3be8032b09acc4a058250b29d70af221..ec988fc900c449d582c7fecc40649a21505ad9bd 100644 (file)
@@ -125,6 +125,11 @@ class InfoExtractor(object):
 
     def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None):
         """ Returns a tuple (page content as string, URL handle) """
+
+        # Strip hashes from the URL (#1038)
+        if isinstance(url_or_request, (compat_str, str)):
+            url_or_request = url_or_request.partition('#')[0]
+
         urlh = self._request_webpage(url_or_request, video_id, note, errnote)
         content_type = urlh.headers.get('Content-Type', '')
         m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)