eric6/Plugins/PluginVcsGit.py

changeset 7256
4ef3b78ebb4e
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7255:d595f6f9cbf8 7256:4ef3b78ebb4e
31 pluginType = "version_control" 31 pluginType = "version_control"
32 pluginTypename = "Git" 32 pluginTypename = "Git"
33 className = "VcsGitPlugin" 33 className = "VcsGitPlugin"
34 packageName = "__core__" 34 packageName = "__core__"
35 shortDescription = "Implements the Git version control interface." 35 shortDescription = "Implements the Git version control interface."
36 longDescription = \ 36 longDescription = (
37 """This plugin provides the Git version control interface.""" 37 """This plugin provides the Git version control interface."""
38 )
38 pyqtApi = 2 39 pyqtApi = 2
39 # End-Of-Header 40 # End-Of-Header
40 41
41 error = "" 42 error = ""
42 43
109 110
110 @param configDlg reference to the configuration dialog (QDialog) 111 @param configDlg reference to the configuration dialog (QDialog)
111 @return reference to the configuration page 112 @return reference to the configuration page
112 """ 113 """
113 global gitCfgPluginObject 114 global gitCfgPluginObject
114 from VcsPlugins.vcsGit.ConfigurationPage.GitPage import \ 115 from VcsPlugins.vcsGit.ConfigurationPage.GitPage import (
115 GitPage 116 GitPage
117 )
116 if gitCfgPluginObject is None: 118 if gitCfgPluginObject is None:
117 gitCfgPluginObject = VcsGitPlugin(None) 119 gitCfgPluginObject = VcsGitPlugin(None)
118 page = GitPage(gitCfgPluginObject) 120 page = GitPage(gitCfgPluginObject)
119 return page 121 return page
120 122

eric ide

mercurial