Hi,

Judging by the fact it's one of PyInstaller's hooks raising the error I 
think it's almost certainly not your problem.

Could you run the following lines and share the results:

import sqlalchemy.databases
print(sqlalchemy.databases.__all__)

from PyInstaller.utils.hooks import exec_statement

databases = exec_statement("import sqlalchemy.databases; 
print(sqlalchemy.databases.__all__)")
print(repr(databases))

If you aren't actually using sqlalchemy then you can just exclude it with 
`--exlcude-module sqlachemy`. 

Brénainn

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pyinstaller+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/647aa5ee-d219-49d7-a13c-4bd0987d7811%40googlegroups.com.

Reply via email to