youtube-dl

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

commit 5caa531a1a7e070e3bef8cc60c3d00c3f7ab1e6c
parent a64646e417615173c9436887116402c9c4c9f6ee
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 11 Jan 2019 23:47:23 +0700

[postprocessor/ffmpeg] PEP 8

Diffstat:
Myoutube_dl/postprocessor/ffmpeg.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py @@ -83,8 +83,8 @@ class FFmpegPostProcessor(PostProcessor): ver = get_exe_version(path, args=['-version']) if ver: regexs = [ - r'([0-9.]+)-0ubuntu0\.[0-9.]+$', # Ubuntu - r'n([0-9.]+)$', # Arch Linux + r'([0-9.]+)-0ubuntu0\.[0-9.]+$', # Ubuntu + r'n([0-9.]+)$', # Arch Linux ] for regex in regexs: mobj = re.match(regex, ver)