So for my clean checkout of [1406] on Windows, I was getting errors as
described in this thread:
http://groups.google.com/group/pyinstaller/browse_thread/thread/e103599795450d56
So I fixed the errors, patch file (in between starred lines) is below.
Cheers,
Mike
****************************************
Index: PyInstaller/hooks/hook-pythoncom.py
===================================================================
--- PyInstaller/hooks/hook-pythoncom.py (revision 1406)
+++ PyInstaller/hooks/hook-pythoncom.py (working copy)
@@ -33,6 +33,6 @@
h = win32api.LoadLibrary(newname+'.dll')
pth = win32api.GetModuleFileName(h)
#win32api.FreeLibrary(h)
- import mf
+ import PyInstaller.mf as mf
mod = mf.ExtensionModule(newname, pth)
return mod
Index: PyInstaller/hooks/hook-pywintypes.py
===================================================================
--- PyInstaller/hooks/hook-pywintypes.py (revision 1406)
+++ PyInstaller/hooks/hook-pywintypes.py (working copy)
@@ -31,6 +31,6 @@
h = win32api.LoadLibrary(newname+'.dll')
pth = win32api.GetModuleFileName(h)
#win32api.FreeLibrary(h)
- import mf
+ import PyInstaller.mf as mf
mod = mf.ExtensionModule(newname, pth)
return mod
****************************************
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.