--- a/IconEditor/IconEditorPalette.py Tue Jul 27 12:33:08 2010 +0200 +++ b/IconEditor/IconEditorPalette.py Tue Jul 27 12:44:19 2010 +0200 @@ -98,7 +98,8 @@ self.__color.setPixmap(pm) self.__colorTxt.setText( - "%d, %d, %d, %d" % (color.red(), color.green(), color.blue(), color.alpha())) + "{0:d}, {1:d}, {2:d}, {3:d}".format( + color.red(), color.green(), color.blue(), color.alpha())) self.__colorAlpha.setValue(self.__currentAlpha)