PluginPyLint.py

changeset 62
3d7ca91127c5
parent 60
971dd1b69f5b
child 64
7c2867ac2ee8
equal deleted inserted replaced
61:01b72bc93eed 62:3d7ca91127c5
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.5" 38 version = "6.1.6"
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""" \
210 exes.append(exe) 210 exes.append(exe)
211 211
212 # step 2: determine the Python variant 212 # step 2: determine the Python variant
213 if Utilities.isMacPlatform(): 213 if Utilities.isMacPlatform():
214 checkStrings = ["Python.framework/Versions/3".lower(), 214 checkStrings = ["Python.framework/Versions/3".lower(),
215 "python3"] 215 "python3", "python"]
216 else: 216 else:
217 checkStrings = ["python3"] 217 checkStrings = ["python3"]
218 218
219 _exePy2 = set() 219 _exePy2 = set()
220 _exePy3 = set() 220 _exePy3 = set()

eric ide

mercurial