fix Ifcondition (missing SUBINFO_SEP)

This commit is contained in:
Bela 2018-04-05 07:59:31 +02:00
parent 855528a713
commit 9e9bdaf289

View file

@ -251,8 +251,8 @@ class FormField():
"(Empty input = Do not ask the user.) ")
if len(question) == 0:
self[choicename + SUBINFO_SEP + "Ifequal"] = "no"
self[choicename + SUBINFO_SEP + "no" + "A"] = "A"
self[choicename + SUBINFO_SEP + "no" + "B"] = "B"
self[choicename + SUBINFO_SEP + "no" + SUBINFO_SEP + "A"] = "A"
self[choicename + SUBINFO_SEP + "no" + SUBINFO_SEP + "B"] = "B"
else:
self[choicename + SUBINFO_SEP + "Prompt"] = question
else: