--- a/eric6/Plugins/PluginWizardDotDesktop.py Sat Sep 21 18:30:02 2019 +0200 +++ b/eric6/Plugins/PluginWizardDotDesktop.py Sat Sep 21 20:30:56 2019 +0200 @@ -26,9 +26,10 @@ className = "DotDesktopWizard" packageName = "__core__" shortDescription = "Wizard for the creation of a .desktop file." -longDescription = \ - """This plug-in implements a wizard to generate code for""" \ +longDescription = ( + """This plug-in implements a wizard to generate code for""" """ a .desktop file.""" +) needsRestart = False pyqtApi = 2 # End-of-Header @@ -128,8 +129,9 @@ e5App().getObject("ViewManager").newEditor() editor = e5App().getObject("ViewManager").activeWindow() - from WizardPlugins.DotDesktopWizard.DotDesktopWizardDialog import \ + from WizardPlugins.DotDesktopWizard.DotDesktopWizardDialog import ( DotDesktopWizardDialog + ) dlg = DotDesktopWizardDialog(None) if dlg.exec_() == QDialog.Accepted: code = dlg.getCode()