diff --git a/src/you_get/extractors/xinpianchang.py b/src/you_get/extractors/xinpianchang.py index a15b193a..48830d97 100644 --- a/src/you_get/extractors/xinpianchang.py +++ b/src/you_get/extractors/xinpianchang.py @@ -38,7 +38,6 @@ class Xinpianchang(VideoExtractor): stype = [st for st in self.__class__.stream_types if st['video_profile'] == profile][0] stream_data = dict(src=[url], size=size, container='mp4', quality=stype['quality']) - print(stream_data) self.streams[stype['id']] = stream_data diff --git a/tests/test.py b/tests/test.py index 5bc0a2e5..5e4de738 100644 --- a/tests/test.py +++ b/tests/test.py @@ -48,7 +48,7 @@ class YouGetTests(unittest.TestCase): ) def test_xinpianchang(self): - imgur.download('https://www.xinpianchang.com/a10673220', info_only=True) + xinpianchang.download('https://www.xinpianchang.com/a10673220', info_only=True) if __name__ == '__main__': unittest.main()