Hi Michael, On 19 February 2011 17:13, Michael Durian <[email protected]> wrote: > BtGatewayBlueZ is not defined because its definition is conditional on > importing > the bluetooth module: > try: > import bluetooth > except Exception, e: > print e > BLUEZ_SUPPORTED = False > else: > BLUEZ_SUPPORTED = True > > I don't know where to begin to diagnose which specified procedure is missing > in the bluetooth DLL or how to fix things so it will run under XP. Can anyone > offer some advice?
It looks like you probably need to create a hook file. See http://www.pyinstaller.org/export/latest/trunk/doc/Manual.html?format=raw#listing-hidden-imports for how to do this. -- Raoul Snyman B.Tech Information Technology (Software Engineering) E-Mail: [email protected] Web: http://www.saturnlaboratories.co.za/ Blog: http://blog.saturnlaboratories.co.za/ Mobile: 082 550 3754 Registered Linux User #333298 (http://counter.li.org) -- 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.
