diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-10 13:04:45 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-10 13:04:45 +0200 |
commit | 9572013de9b994e2c20e972f13ce0a54cbd3f886 (patch) | |
tree | 258fa976bc3108fa3117b5efbeb04b5b73613786 /youtube_dl/utils.py | |
parent | 3a5beb0ca149cd0b1df5b29984033e20ccb85a61 (diff) |
[appletrailers] Support height-less videos
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 9b94407f4..65b492fb3 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1273,8 +1273,11 @@ def int_or_none(v, scale=1, default=None, get_attr=None, invscale=1): if get_attr: if v is not None: v = getattr(v, get_attr, None) + if v == '': + v = None return default if v is None else (int(v) * invscale // scale) + def str_or_none(v, default=None): return default if v is None else compat_str(v) |