ProjectController.py
changeset 1722 89824afffef2
parent 1708 24416137cda7
child 1730 64d8f52bc8c8
--- 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]))