summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-05-14 23:41:57 +0600
committerSergey M․ <dstftw@gmail.com>2016-05-14 23:41:57 +0600
commitcda6d47aad106a825f837c7a583fffc783c4b63b (patch)
treed3933c16705e42e7ee512e3e1e3ed321a54fe22f
parent5d39176f6de8bab1e019ead7cd497659f3fc1a94 (diff)
downloadyoutube-dl-cda6d47aad106a825f837c7a583fffc783c4b63b.tar.gz
youtube-dl-cda6d47aad106a825f837c7a583fffc783c4b63b.tar.xz
youtube-dl-cda6d47aad106a825f837c7a583fffc783c4b63b.zip
[utils] Simplify integer conversion in js_to_json
-rw-r--r--youtube_dl/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 25a9f33c0..a637563cb 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -1926,14 +1926,14 @@ def js_to_json(code):
             }.get(m.group(0), m.group(0)), v[1:-1])
 
         INTEGER_TABLE = (
-            (r'^(0[xX][0-9a-fA-F]+)', 16),
-            (r'^(0+[0-7]+)', 8),
+            (r'^0[xX][0-9a-fA-F]+', 16),
+            (r'^0+[0-7]+', 8),
         )
 
         for regex, base in INTEGER_TABLE:
             im = re.match(regex, v)
             if im:
-                i = int(im.group(1), base)
+                i = int(im.group(0), base)
                 return '"%d":' % i if v.endswith(':') else '%d' % i
 
         return '"%s"' % v