youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit caf80631f0c57b29187e2aa909fa1a3a6325d6e6
parent 1812afb7b396f4954d5d1ca1cec1c3f2d67550c6
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 14 Oct 2015 22:36:37 +0600

[utils] Do not fail in float_or_none on non-numeric data

Diffstat:
Myoutube_dl/utils.py | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -1392,7 +1392,12 @@ def str_to_int(int_str): def float_or_none(v, scale=1, invscale=1, default=None): - return default if v is None else (float(v) * invscale / scale) + if v is None: + return default + try: + return float(v) * invscale / scale + except ValueError: + return default def parse_duration(s):