--- a/Preferences/ConfigurationPages/PythonPage.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Preferences/ConfigurationPages/PythonPage.py Fri Mar 11 16:51:57 2011 +0100 @@ -13,6 +13,7 @@ import Preferences from Utilities import supportedCodecs + class PythonPage(ConfigurationPageBase, Ui_PythonPage): """ Class implementing the Python configuration page. @@ -56,11 +57,12 @@ enc = "utf-8" Preferences.setSystem("IOEncoding", enc) - Preferences.setDebugger("PythonExtensions", + Preferences.setDebugger("PythonExtensions", self.py2ExtensionsEdit.text()) - Preferences.setDebugger("Python3Extensions", + Preferences.setDebugger("Python3Extensions", self.py3ExtensionsEdit.text()) + def create(dlg): """ Module function to create the configuration page. @@ -68,4 +70,4 @@ @param dlg reference to the configuration dialog """ page = PythonPage() - return page \ No newline at end of file + return page