diff -r d595f6f9cbf8 -r 4ef3b78ebb4e eric6/Plugins/PluginWizardSetup.py --- a/eric6/Plugins/PluginWizardSetup.py Sat Sep 21 18:30:02 2019 +0200 +++ b/eric6/Plugins/PluginWizardSetup.py Sat Sep 21 20:30:56 2019 +0200 @@ -26,10 +26,11 @@ className = "SetupWizard" packageName = "__core__" shortDescription = "Wizard for the creation of a setup.py file." -longDescription = \ - """This plug-in implements a wizard to generate code for""" \ - """ a setup.py file. It supports the 'distutils' and 'setuptools'""" \ +longDescription = ( + """This plug-in implements a wizard to generate code for""" + """ a setup.py file. It supports the 'distutils' and 'setuptools'""" """ variants.""" +) needsRestart = False pyqtApi = 2 # End-of-Header @@ -113,8 +114,9 @@ @param editor reference to the current editor @return the generated code (string) """ - from WizardPlugins.SetupWizard.SetupWizardDialog import \ + from WizardPlugins.SetupWizard.SetupWizardDialog import ( SetupWizardDialog + ) dlg = SetupWizardDialog(None) if dlg.exec_() == QDialog.Accepted: line, index = editor.getCursorPosition()