mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-27 23:56:51 +01: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):
|
def str_to_int(int_str):
|
||||||
|
if int_str is None:
|
||||||
|
return None
|
||||||
int_str = re.sub(r'[,\.]', u'', int_str)
|
int_str = re.sub(r'[,\.]', u'', int_str)
|
||||||
return int(int_str)
|
return int(int_str)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user