Hi!
I'm sending a pyinstaller fix for SQLAlchemy hook and a fix for print/
unicode
which is failing if filesystem path contains non-ascii characters.
Patch is
against SVN trunk r1580.
David
Index: PyInstaller/hooks/hook-sqlalchemy.py
===================================================================
26c26
< databases = eval(databases)
---
> databases = eval(databases.strip())
33c33
< is_alch06 = eval(version) >= '0.6'
---
> is_alch06 = version >= '0.6'
37c37
< dialects = eval(dialects)
---
> dialects = eval(dialects.strip())
Index: PyInstaller/build.py
===================================================================
705,706c705,706
< print ("Adding %s to dependent
assemblies "
< "of %s") % (pydep.name,
cachedfile)
---
> print ("Adding %r to dependent assemblies
> "
> "of %r") % (pydep.name, cachedfile)
--
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.