Implementation notebook in the SMESH module.

This commit is contained in:
rnv 2008-11-29 14:31:57 +00:00
parent 472ffc5908
commit 246b043ec9

View File

@ -4229,9 +4229,12 @@ def ParseParameters(last, nbParams,nbParam, value):
else:
strResult = strResult + ""
else:
if isinstance(value, str) and notebook.isVariable(value):
result = notebook.get(value)
strResult=strResult+value
if isinstance(value, str):
if notebook.isVariable(value):
result = notebook.get(value)
strResult=strResult+value
else:
raise RuntimeError, "Variable with name '" + value + "' doesn't exist!!!"
else:
strResult=strResult+str(value)
result = value