youtube-dl

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

commit 41beccbab0f8ecaace69c5d6ffb00ac20a813565
parent 2eb88d953f25e178881c1415c68fea1f770a7ee6
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 27 Jun 2013 19:43:43 +0200

Use str every time

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

diff --git a/test/test_download.py b/test/test_download.py @@ -168,7 +168,7 @@ for n, test_case in enumerate(defs): tname = 'test_' + str(test_case['name']) i = 1 while hasattr(TestDownload, tname): - tname = 'test_' + test_case['name'] + '_' + str(i) + tname = 'test_' + str(test_case['name']) + '_' + str(i) i += 1 test_method.__name__ = tname setattr(TestDownload, test_method.__name__, test_method)