ConfigTreeNode.py
changeset 1828 396da88d7b5c
parent 1782 5b6ad7a7fd9d
child 1831 56b48961cc68
--- a/ConfigTreeNode.py	Fri Sep 22 10:57:57 2017 +0300
+++ b/ConfigTreeNode.py	Fri Sep 22 16:37:38 2017 +0300
@@ -567,7 +567,7 @@
                     # Load the confnode.xml file into parameters members
                     _self.LoadXMLParams(NewCTNName)
                     # Basic check. Better to fail immediately.
-                    if (_self.BaseParams.getName() != NewCTNName):
+                    if _self.BaseParams.getName() != NewCTNName:
                         raise Exception(
                             _("Project tree layout do not match confnode.xml {a1}!={a2} ").
                             format(a1=NewCTNName, a2=_self.BaseParams.getName()))