Comment 4 for bug 514796

Revision history for this message
Jonathan Thomas (echidnaman) wrote :

From bug 521356:
"python-qt4 in /usr/share/pyshared/PyQt4/uic/uiparser.py at line 184 invokes the string method of a Qstring.

But lately, Qstring does not have anymore such method, meaning that python-qt4 in /usr/share/pyshared/PyQt4/uic/uiparser.py breaks on QT 4.6 and on installations of kde 4.4 on ubuntu. For instance, with a kubuntu karmic distro upgraded to kde 4.4 using the instructions on the kubuntu website fails to have a working user-management module in the system settings.

Please have line 184 of python-qt4 in /usr/share/pyshared/PyQt4/uic/uiparser.py

from

bg_name = bg_i18n.string

to

bg_name = str(bg_i18n)"