youtube-dl

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

commit 278143df5b026f76e52bad8500a32780b52a1e35
parent fdca55fe34a6d120c597641472856a296f1e80db
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon,  3 Nov 2014 19:12:06 +0100

[test_compat] Ignore unicode_literals

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

diff --git a/test/test_compat.py b/test/test_compat.py @@ -37,7 +37,7 @@ class TestCompat(unittest.TestCase): all_names = youtube_dl.compat.__all__ present_names = set(filter( lambda c: '_' in c and not c.startswith('_'), - dir(youtube_dl.compat))) + dir(youtube_dl.compat))) - set(['unicode_literals']) self.assertEqual(all_names, sorted(present_names)) if __name__ == '__main__':