72 @return dictionary with indicator as key and a tuple with the vcs name (string) |
72 @return dictionary with indicator as key and a tuple with the vcs name (string) |
73 and vcs display string (string) |
73 and vcs display string (string) |
74 """ |
74 """ |
75 global pluginTypename |
75 global pluginTypename |
76 data = {} |
76 data = {} |
77 try: |
77 data[".svn"] = (pluginTypename, displayString()) |
78 data[".svn"] = (pluginTypename, displayString()) |
78 data["_svn"] = (pluginTypename, displayString()) |
79 data["_svn"] = (pluginTypename, displayString()) |
|
80 except ImportError: |
|
81 pass |
|
82 return data |
79 return data |
83 |
80 |
84 |
81 |
85 def displayString(): |
82 def displayString(): |
86 """ |
83 """ |