Maxim Kolosov wrote:
Hello all.
Error with AGW (Phoenix-2.9.5.81-r73873) and Python 3.3.1
Traceback (most recent call last):
File "python331.py", line 2, in <module>
from wx.lib.agw.aui import AuiManager
File "wx\lib\agw\aui\__init__.py", line 293, in <module>
from .auibar import *
File "wx\lib\agw\aui\auibar.py", line 20, in <module>
import framemanager
ImportError: No module named 'framemanager'on Python 2.7 work normal.
I expect that this is due to the absolute imports changes in Py3. Try adding "from __future__ import absolute_import" and you'll probably get the same error with Py27. Then you can fix it and send us a patch!
···
--
Robin Dunn
Software Craftsman