Use
from gi.repository import Indicate
em vez de
import indicate
Estou tentando integrar meu aplicativo Python / GTK3 ao menu de mensagens do Ubuntu e toda vez que tento importar "indicar" (python-indic) meu aplicativo trava, com o seguinte traceback:
/usr/lib/python2.7/dist-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion 'g_type_from_name (name) == 0' failed
import gobject._gobject
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: specified class size for type 'PyGtkGenericCellRenderer' is smaller than the parent type's 'GtkCellRenderer' class size
from gtk import _gtk
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: g_type_get_qdata: assertion 'node != NULL' failed
from gtk import _gtk
Isso parece algum tipo de conflito entre o GTK2 e o GTK3 ... de qualquer forma, como eu iria consertar isso?
Obrigado.
Use
from gi.repository import Indicate
em vez de
import indicate