--- a/Preferences/ConfigurationPages/HelpAppearancePage.py Fri Jan 01 16:11:36 2010 +0000 +++ b/Preferences/ConfigurationPages/HelpAppearancePage.py Sat Jan 02 15:11:35 2010 +0000 @@ -12,8 +12,8 @@ from E4Gui.E4Completers import E4FileCompleter -from ConfigurationPageBase import ConfigurationPageBase -from Ui_HelpAppearancePage import Ui_HelpAppearancePage +from .ConfigurationPageBase import ConfigurationPageBase +from .Ui_HelpAppearancePage import Ui_HelpAppearancePage import Preferences import Utilities @@ -67,7 +67,7 @@ Preferences.setHelp("UserStyleSheet", self.styleSheetEdit.text()) - for key in self.helpColours.keys(): + for key in list(self.helpColours.keys()): Preferences.setHelp(key, self.helpColours[key]) @pyqtSlot()