ConfigTreeNode.py
changeset 1767 c74815729afd
parent 1765 ccf59c1f0b45
child 1778 1c6a704bd39c
--- a/ConfigTreeNode.py	Thu Aug 17 17:25:17 2017 +0300
+++ b/ConfigTreeNode.py	Fri Aug 18 12:36:31 2017 +0300
@@ -530,7 +530,7 @@
             CTNClass, CTNHelp = CTNChildrenTypes[CTNType]
         except KeyError:
             raise Exception(_("Cannot create child {a1} of type {a2} ").
-                             format(a1=CTNName, a2=CTNType))
+                            format(a1=CTNName, a2=CTNType))
 
         # if CTNClass is a class factory, call it. (prevent unneeded imports)
         if type(CTNClass) == types.FunctionType: