diff -r b601ede6dbbf -r 150de635fa29 Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py --- a/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Sat Sep 07 14:50:51 2013 +0200 +++ b/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Sat Sep 07 15:47:53 2013 +0200 @@ -31,8 +31,8 @@ super().__init__(parent) self.setupUi(self) - self.bTest = \ - self.buttonBox.addButton(self.trUtf8("Test"), QDialogButtonBox.ActionRole) + self.bTest = self.buttonBox.addButton( + self.trUtf8("Test"), QDialogButtonBox.ActionRole) self.font = None @@ -69,8 +69,8 @@ @pyqtSlot() def on_fontButton_clicked(self): """ - Private slot to handle the button press to select a font via a font selection - dialog. + Private slot to handle the button press to select a font via a + font selection dialog. """ if self.font is None: font, ok = QFontDialog.getFont()