diff -r 3d88d53f8c2b -r 033967644b1f Project/ProjectInterfacesBrowser.py --- a/Project/ProjectInterfacesBrowser.py Thu Mar 09 19:28:59 2017 +0100 +++ b/Project/ProjectInterfacesBrowser.py Fri Mar 10 17:32:19 2017 +0100 @@ -486,8 +486,8 @@ poaList = glob.glob(os.path.join(path, "*__POA")) npoaList = [f.replace("__POA", "") for f in poaList] fileList = glob.glob(os.path.join(path, "*_idl.py")) - for dir in poaList + npoaList: - fileList += Utilities.direntries(dir, True, "*.py") + for directory in poaList + npoaList: + fileList += Utilities.direntries(directory, True, "*.py") for file in fileList: self.project.appendFile(file) if not self.noDialog and not ui.notificationsEnabled():