From d03e98eff7c65fa88c545e293c1c7fb438c2130f Mon Sep 17 00:00:00 2001 From: ayanamist Date: Tue, 2 Jan 2018 22:46:25 +0800 Subject: [PATCH] broken bilibili url with "HTTP Error with code466" --- tests/test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test.py b/tests/test.py index 699675f3..821de2b7 100644 --- a/tests/test.py +++ b/tests/test.py @@ -46,6 +46,9 @@ class YouGetTests(unittest.TestCase): bilibili.download( 'https://www.bilibili.com/video/av13228063/', info_only=True ) + bilibili.download( + 'https://www.bilibili.com/video/av17905432', info_only=False + ) if __name__ == '__main__':