eric6/Plugins/PluginWizardDotDesktop.py

changeset 7256
4ef3b78ebb4e
parent 7229
53054eb5b15a
child 7360
9190402e4505
diff -r d595f6f9cbf8 -r 4ef3b78ebb4e eric6/Plugins/PluginWizardDotDesktop.py
--- 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()

eric ide

mercurial