Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Using named tuples needlessly breaks compatibility with versions of python <= 2.6
Changing line 313 from:
if sys.platform == 'win32' and sys.getwindowsversion().major >= 5:
To:
if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
fixes the issue.
youtube-dl --version
2012.02.27
python --version
Python 2.6.1
Windows Vista 64Bit