mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[utils] Add None check in str_to_int
This commit is contained in:
parent
61bbddbaa6
commit
c45a6caa95
@ -1194,6 +1194,8 @@ def format_bytes(bytes):
|
||||
|
||||
|
||||
def str_to_int(int_str):
|
||||
if int_str is None:
|
||||
return None
|
||||
int_str = re.sub(r'[,\.]', u'', int_str)
|
||||
return int(int_str)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user