youtube-dl

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

commit 0fd7fd71b4570c274452a59e570cb5b484a0be2f
parent eae12e3fe3f7288d9133b85d00e694575f6674fc
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 23 Jul 2014 01:43:46 +0200

[test/helper] Do not use deprecated method

Diffstat:
Mtest/helper.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/helper.py b/test/helper.py @@ -137,8 +137,8 @@ def expect_info_dict(self, expected_dict, got_dict): def assertRegexpMatches(self, text, regexp, msg=None): - if hasattr(self, 'assertRegexpMatches'): - return self.assertRegexpMatches(text, regexp, msg) + if hasattr(self, 'assertRegexp'): + return self.assertRegexp(text, regexp, msg) else: m = re.match(regexp, text) if not m: