youtube-dl

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

commit f99e0f1ed62e6210a52f1a4bddb860a5b09623ee
parent d323bcb1522d3163918eef2c458e33537c773287
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 20 Nov 2013 07:37:07 +0100

Adapt age restriction tests to new .info.json filenames

Diffstat:
Mtest/test_age_restriction.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/test_age_restriction.py b/test/test_age_restriction.py @@ -24,7 +24,7 @@ def _download_restricted(url, filename, age): } ydl = YoutubeDL(params) ydl.add_default_info_extractors() - json_filename = filename + '.info.json' + json_filename = os.path.splitext(filename)[0] + '.info.json' try_rm(json_filename) ydl.download([url]) res = os.path.exists(json_filename)