src/eric7/Plugins/PluginCodeStyleChecker.py

branch
eric7
changeset 9514
2b104ad132a4
parent 9482
a2bc06a54d9d
child 9624
b47dfa7a137d
equal deleted inserted replaced
9513:6e260b424396 9514:2b104ad132a4
373 project = ericApp().getObject("Project") 373 project = ericApp().getObject("Project")
374 project.saveAllScripts() 374 project.saveAllScripts()
375 ppath = project.getProjectPath() 375 ppath = project.getProjectPath()
376 files = [ 376 files = [
377 os.path.join(ppath, file) 377 os.path.join(ppath, file)
378 for file in project.pdata["SOURCES"] 378 for file in project.getProjectData(dataKey="SOURCES")
379 if file.endswith(tuple(Preferences.getPython("Python3Extensions"))) 379 if file.endswith(tuple(Preferences.getPython("Python3Extensions")))
380 ] 380 ]
381 381
382 self.__projectCodeStyleCheckerDialog = ( 382 self.__projectCodeStyleCheckerDialog = (
383 CodeStyleCheckerDialog.CodeStyleCheckerDialog(self) 383 CodeStyleCheckerDialog.CodeStyleCheckerDialog(self)

eric ide

mercurial