Fix list comprehension for decoding the URLs (fixes #2100)
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Sun, 5 Jan 2014 09:58:36 +0000 (10:58 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Sun, 5 Jan 2014 09:58:36 +0000 (10:58 +0100)
commit41292a3827358708f909b44fa368ead0ee6c7eb7
tree898a66fc40916bf0720102396e88af49b9626130
parent20f1be02dffd27385f64d6d4e53e1ccdfdf19589
Fix list comprehension for decoding the URLs (fixes #2100)

It wasn’t a comprehension, it was just using the last url from the previous comprehension.
That didn’t raise an error in python 2, but in python 3 the variable was not defined.
youtube_dl/__init__.py