Browse Source

Python 2.6 compatibility fix. Thanks @Jamesc359 - closes #400

rtmp_test
Filippo Valsorda 12 years ago
parent
commit
9bb8dc8e42
2 changed files with 1 additions and 1 deletions
  1. BIN
      youtube-dl
  2. +1
    -1
      youtube_dl/utils.py

BIN
youtube-dl View File


+ 1
- 1
youtube_dl/utils.py View File

@ -223,7 +223,7 @@ def encodeFilename(s):
assert type(s) == type(u'')
if sys.platform == 'win32' and sys.getwindowsversion().major >= 5:
if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
# Pass u'' directly to use Unicode APIs on Windows 2000 and up
# (Detecting Windows NT 4 is tricky because 'major >= 4' would
# match Windows 9x series as well. Besides, NT 4 is obsolete.)


Loading…
Cancel
Save