eric6/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py

changeset 7628
f904d0eef264
parent 7360
9190402e4505
child 7635
0cdead130a81
equal deleted inserted replaced
7626:7f643d41464e 7628:f904d0eef264
305 try: 305 try:
306 fn = detail.filename 306 fn = detail.filename
307 line = detail.lineno 307 line = detail.lineno
308 error = detail.msg 308 error = detail.msg
309 return [{'error': (fn, line, 0, "", error)}] 309 return [{'error': (fn, line, 0, "", error)}]
310 except Exception: 310 except Exception: # secok
311 pass 311 pass
312 312
313 # pyflakes 313 # pyflakes
314 if not checkFlakes: 314 if not checkFlakes:
315 return [{}] 315 return [{}]

eric ide

mercurial