Use alternative imports for Python 2.4 (Closes #138)
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 6 Aug 2011 09:47:53 +0000 (11:47 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 6 Aug 2011 09:48:45 +0000 (11:48 +0200)
youtube-dl

index 3b06908..9f391db 100755 (executable)
@@ -12,9 +12,7 @@
 from __future__ import with_statement
 import contextlib
 import cookielib
-import ctypes
 import datetime
-import email.utils
 import gzip
 import htmlentitydefs
 import httplib
@@ -34,6 +32,13 @@ import urllib2
 import warnings
 import zlib
 
+if os.name == 'nt':
+       import ctypes
+
+try:
+       import email.utils
+except ImportError: # Python 2.4
+       import email.Utils
 try:
        import cStringIO as StringIO
 except ImportError: