src/eric7/Plugins/PluginVcsPySvn.py

branch
eric7
changeset 9278
36448ca469c2
parent 9221
bf71ee032bb4
child 9413
80c06d472826
equal deleted inserted replaced
9277:471c5a263d53 9278:36448ca469c2
74 74
75 @return dictionary with indicator as key and a tuple with the vcs name 75 @return dictionary with indicator as key and a tuple with the vcs name
76 (string) and vcs display string (string) 76 (string) and vcs display string (string)
77 """ 77 """
78 global pluginTypename 78 global pluginTypename
79 data = {} 79 return {
80 data[".svn"] = (pluginTypename, displayString()) 80 ".svn": (pluginTypename, displayString()),
81 data["_svn"] = (pluginTypename, displayString()) 81 "_svn": (pluginTypename, displayString()),
82 return data 82 }
83 83
84 84
85 def displayString(): 85 def displayString():
86 """ 86 """
87 Public function to get the display string. 87 Public function to get the display string.

eric ide

mercurial