33 # Start-of-Header |
33 # Start-of-Header |
34 name = "PyLint Plugin" |
34 name = "PyLint Plugin" |
35 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
35 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
36 autoactivate = True |
36 autoactivate = True |
37 deactivateable = True |
37 deactivateable = True |
38 version = "6.1.9" |
38 version = "6.1.10" |
39 className = "PyLintPlugin" |
39 className = "PyLintPlugin" |
40 packageName = "PyLint" |
40 packageName = "PyLint" |
41 shortDescription = "Show the PyLint dialogs." |
41 shortDescription = "Show the PyLint dialogs." |
42 longDescription = """This plug-in implements the PyLint dialogs.""" \ |
42 longDescription = """This plug-in implements the PyLint dialogs.""" \ |
43 """ PyLint is used to check Python source files according to various""" \ |
43 """ PyLint is used to check Python source files according to various""" \ |
179 winreg.KEY_WOW64_64KEY | winreg.KEY_READ, versionStr) |
179 winreg.KEY_WOW64_64KEY | winreg.KEY_READ, versionStr) |
180 if exePaths: |
180 if exePaths: |
181 for exePath in exePaths: |
181 for exePath in exePaths: |
182 executables.add(exePath) |
182 executables.add(exePath) |
183 |
183 |
184 exePath = getExePath( |
184 exePaths = getExePath( |
185 winreg.HKEY_LOCAL_MACHINE, |
185 winreg.HKEY_LOCAL_MACHINE, |
186 winreg.KEY_WOW64_64KEY | winreg.KEY_READ, versionStr) |
186 winreg.KEY_WOW64_64KEY | winreg.KEY_READ, versionStr) |
187 if exePaths: |
187 if exePaths: |
188 for exePath in exePaths: |
188 for exePath in exePaths: |
189 executables.add(exePath) |
189 executables.add(exePath) |