diff -r ce77f0b1ee67 -r 9986ec0e559a Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py --- a/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Sun Sep 08 19:04:07 2013 +0200 +++ b/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py Tue Oct 15 22:03:54 2013 +0200 @@ -33,8 +33,8 @@ super(FontDialogWizardDialog, self).__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 @@ -71,8 +71,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()