app Python / GTK3 travando na importação de “indicar” (python-indic)

5

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.

    
por aviraldg 18.06.2012 / 19:53

1 resposta

6

Use

from gi.repository import Indicate

em vez de

import indicate
    
por Florian Diesch 18.06.2012 / 20:03