34 "longDescription": """This plugin provides the PySvn version control interface.""", |
34 "longDescription": """This plugin provides the PySvn version control interface.""", |
35 "pyqtApi": 2, |
35 "pyqtApi": 2, |
36 } |
36 } |
37 # End-Of-Header |
37 # End-Of-Header |
38 |
38 |
39 error = "" # noqa: U200 |
39 error = "" # noqa: U-200 |
40 |
40 |
41 |
41 |
42 def exeDisplayData(): |
42 def exeDisplayData(): |
43 """ |
43 """ |
44 Public method to support the display of some executable info. |
44 Public method to support the display of some executable info. |
45 |
45 |
46 @return dictionary containing the data to be shown |
46 @return dictionary containing the data to be shown |
47 @rtype dict |
47 @rtype dict |
48 """ |
48 """ |
49 try: |
49 try: |
50 import pysvn # __IGNORE_WARNING_I10__ |
50 import pysvn # __IGNORE_WARNING_I-10__ |
51 |
51 |
52 try: |
52 try: |
53 text = os.path.dirname(pysvn.__file__) |
53 text = os.path.dirname(pysvn.__file__) |
54 except AttributeError: |
54 except AttributeError: |
55 text = "PySvn" |
55 text = "PySvn" |