eric6/Plugins/PluginVcsGit.py

changeset 7256
4ef3b78ebb4e
parent 7229
53054eb5b15a
child 7360
9190402e4505
diff -r d595f6f9cbf8 -r 4ef3b78ebb4e eric6/Plugins/PluginVcsGit.py
--- a/eric6/Plugins/PluginVcsGit.py	Sat Sep 21 18:30:02 2019 +0200
+++ b/eric6/Plugins/PluginVcsGit.py	Sat Sep 21 20:30:56 2019 +0200
@@ -33,8 +33,9 @@
 className = "VcsGitPlugin"
 packageName = "__core__"
 shortDescription = "Implements the Git version control interface."
-longDescription = \
+longDescription = (
     """This plugin provides the Git version control interface."""
+)
 pyqtApi = 2
 # End-Of-Header
 
@@ -111,8 +112,9 @@
     @return reference to the configuration page
     """
     global gitCfgPluginObject
-    from VcsPlugins.vcsGit.ConfigurationPage.GitPage import \
+    from VcsPlugins.vcsGit.ConfigurationPage.GitPage import (
         GitPage
+    )
     if gitCfgPluginObject is None:
         gitCfgPluginObject = VcsGitPlugin(None)
     page = GitPage(gitCfgPluginObject)

eric ide

mercurial