aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-06-16 11:00:54 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-06-16 11:00:54 +0800
commit47212f7bcbd59af40f91796562a6b72ba0439ac4 (patch)
tree3d4a84997db0c08a71e92973054159677be4a0de /youtube_dl
parent4c93ee8d14dc081d413304d2d2eb694cb62cc71a (diff)
downloadyoutube-dl-47212f7bcbd59af40f91796562a6b72ba0439ac4.tar.xz
[utils] Don't transform numbers not starting with a zero
Fix test_Viidea and maybe others
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index c8308ba3a..82f67f6cd 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -1970,7 +1970,7 @@ def js_to_json(code):
'(?:[^'\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^'\\]*'|
/\*.*?\*/|,(?=\s*[\]}])|
[a-zA-Z_][.a-zA-Z_0-9]*|
- (?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:\s*:)?|
+ \b(?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:\s*:)?|
[0-9]+(?=\s*:)
''', fix_kv, code)