Browse Source

[utils] Add strip_or_none

totalwebcasting
Sergey M․ 8 years ago
parent
commit
b72b44318c
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      youtube_dl/utils.py

+ 4
- 0
youtube_dl/utils.py View File

@ -1660,6 +1660,10 @@ def float_or_none(v, scale=1, invscale=1, default=None):
return default
def strip_or_none(v):
return None if v is None else v.strip()
def parse_duration(s):
if not isinstance(s, compat_basestring):
return None


Loading…
Cancel
Save