Comment 6 for bug 1182835

Revision history for this message
Atila (atilaromero) wrote :

Workaround:
in file /usr/lib/python3/dist-packages/postgresql/types/io/__init__.py
change line 89
        return __import__(__name__ + '.' + relmod, fromlist = True, level = 1)
to
        return __import__(__name__ + '.' + relmod, fromlist = True)

Worked for me, but I'm not sure if it breaks something else.