diff -r e35d2cda9a74 -r b3d966393ba9 Preferences/ConfigurationPages/PluginManagerPage.py --- a/Preferences/ConfigurationPages/PluginManagerPage.py Sat Sep 04 19:51:19 2010 +0200 +++ b/Preferences/ConfigurationPages/PluginManagerPage.py Sat Sep 04 19:51:48 2010 +0200 @@ -35,9 +35,9 @@ self.downloadDirCompleter = E5DirCompleter(self.downloadDirEdit) # set initial values - self.activateExternalPluginsCheckBox.setChecked(\ + self.activateExternalPluginsCheckBox.setChecked( Preferences.getPluginManager("ActivateExternal")) - self.downloadDirEdit.setText(\ + self.downloadDirEdit.setText( Preferences.getPluginManager("DownloadPath")) def save(self): @@ -54,7 +54,7 @@ """ Private slot to handle the directory selection via dialog. """ - directory = QFileDialog.getExistingDirectory(\ + directory = QFileDialog.getExistingDirectory( self, self.trUtf8("Select plugins download directory"), self.downloadDirEdit.text(), @@ -73,4 +73,4 @@ @param dlg reference to the configuration dialog """ page = PluginManagerPage() - return page + return page \ No newline at end of file