1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-12 09:27:20 +08:00

Remove hard-coded value used in testing

This commit is contained in:
grefog 2019-08-24 14:06:55 -06:00
parent 5703dfcc71
commit 184c95ced8

View File

@ -491,7 +491,7 @@ class NiconicoSeriesIE(InfoExtractor):
} for entry in entries] } for entry in entries]
return { return {
'_type': 'playlist', '_type': 'playlist',
'id': u'8253', 'id': series_id,
'entries': entries, 'entries': entries,
'title': self._search_regex(r'bodyTitle">(.*?)</div>', webpage, 'title'), 'title': self._search_regex(r'bodyTitle">(.*?)</div>', webpage, 'title'),
} }