Browse Source

Use alternative imports for Python 2.4 (Closes #138)

Philipp Hagemeister 14 years ago
parent
commit
0a3c8b6291
1 changed files with 7 additions and 2 deletions
  1. 7 2
      youtube-dl

+ 7 - 2
youtube-dl

@@ -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: