diff -r b8b47f9b5e56 -r 396da88d7b5c ConfigTreeNode.py --- 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()))