Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

setup: fix extras variable on Windows

Changeset f5ee61ac33c5

Parent a2d603a15ee3

by Steve Borho

Changes to one file · Browse files at f5ee61ac33c5 Showing diff from parent a2d603a15ee3 Diff from another changeset...

Change 1 of 1 Show Entire File setup.py Stacked
 
32
33
34
35
36
37
 
 
 
38
39
 
40
41
42
 
32
33
34
 
 
 
35
36
37
38
 
39
40
41
42
@@ -32,11 +32,11 @@
  import win32com   for p in win32com.__path__[1:]:   modulefinder.AddPackagePath("win32com", p) - for extra in ["win32com.shell"]: #,"win32com.mapi" - __import__(extra) - m = sys.modules[extra] + for e in ["win32com.shell"]: #,"win32com.mapi" + __import__(e) + m = sys.modules[e]   for p in m.__path__[1:]: - modulefinder.AddPackagePath(extra, p) + modulefinder.AddPackagePath(e, p)   except ImportError:   # no build path setup, no worries.   pass