youtube-dl

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

commit 3513d4143657c1bdc7da72f048a63d4b1ee794d3
parent cab792abe521d36e1cf296fa8578a37a499a78fe
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat,  5 Sep 2015 21:45:52 +0600

[test_compat] Fix typo

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 @@ -68,7 +68,7 @@ class TestCompat(unittest.TestCase): self.assertEqual(compat_urllib_parse_unquote_plus('abc%20def'), 'abc def') self.assertEqual(compat_urllib_parse_unquote_plus('%7e/abc+def'), '~/abc def') - def test_compat_shlex(self): + def test_compat_shlex_split(self): self.assertEqual(compat_shlex_split('-option "one two"'), ['-option', 'one two']) if __name__ == '__main__':