diff -r 42f64435d740 -r 89824afffef2 ProjectController.py --- a/ProjectController.py Sun Jul 30 13:54:51 2017 -0700 +++ b/ProjectController.py Mon Aug 07 14:28:29 2017 +0300 @@ -899,7 +899,7 @@ for line in ListGroup[0]: # Split and Maps each field to dictionnary entries attrs = dict(zip(ProgramsListAttributeName,line.strip().split(';'))) - # Truncate "C_path" to remove conf an ressources names + # Truncate "C_path" to remove conf an resources names attrs["C_path"] = '__'.join(attrs["C_path"].split(".",2)[1:]) # Push this dictionnary into result. self._ProgramList.append(attrs) @@ -910,7 +910,7 @@ for line in ListGroup[1]: # Split and Maps each field to dictionnary entries attrs = dict(zip(VariablesListAttributeName,line.strip().split(';'))) - # Truncate "C_path" to remove conf an ressources names + # Truncate "C_path" to remove conf an resources names parts = attrs["C_path"].split(".",2) if len(parts) > 2: config_FB = config_FBs.get(tuple(parts[:2]))