Fix python 3 syntax test/SIM_events

This commit is contained in:
Scott Fennell 2020-01-09 14:28:20 -06:00
parent 40bb49fb36
commit 4ac0e75d10

View File

@ -40,7 +40,7 @@ class eventSimObject : public Trick::SimObject {
event0 = (Trick::IPPythonEvent*)alloc_type(1,"Trick::IPPythonEvent");
event0->set_name("SDEFINE_event");
event0->condition(0, "True");
event0->action(0, "print \"event0\"; result[0] = 1");
event0->action(0, "print (\"event0\"); result[0] = 1");
event0->activate();
("initialization") init();