##// END OF EJS Templates
Corrected platform recognition for win32
vivainio -
Show More
@@ -21,11 +21,11 b' from IPython import Release'
21 21 __author__ = '%s <%s>' % Release.authors['Ville']
22 22 __license__ = Release.license
23 23
24 import os
24 import os,sys
25 25
26 26 if os.name == 'posix':
27 27 from platutils_posix import *
28 elif os.name == 'win32':
28 elif sys.platform == 'win32':
29 29 from platutils_win32 import *
30 30 else:
31 31 from platutils_dummy import *
General Comments 0
You need to be logged in to leave comments. Login now