Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/linear_creator.py
diff options
context:
space:
mode:
authorVincent Vinet <vince.vinet@gmail.com>2009-10-19 20:15:41 (GMT)
committer Vincent Vinet <vince.vinet@gmail.com>2009-10-19 20:15:41 (GMT)
commit912528253fcf1fc43c1a2d02ffe6e540fe60d8e7 (patch)
tree1d5c075046d260580c9eeb27d0d7d09045a7d4b5 /tutorius/linear_creator.py
parent6584510d390a37153c20974da6704a907058fea0 (diff)
Merge the TProbe Integration and fix merging induced bugs
Diffstat (limited to 'tutorius/linear_creator.py')
-rw-r--r--tutorius/linear_creator.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tutorius/linear_creator.py b/tutorius/linear_creator.py
index 91b11f4..78e94ce 100644
--- a/tutorius/linear_creator.py
+++ b/tutorius/linear_creator.py
@@ -58,9 +58,8 @@ class LinearCreator(object):
# Set the next state name - there is no way the caller should have
# to deal with that.
next_state_name = "State %d" % (self.nb_state+1)
- event_filter.set_next_state(next_state_name)
state = State(self.state_name, action_list=self.current_actions,
- event_filter_list=[event_filter])
+ event_filter_list=[(event_filter, next_state_name),])
self.state_name = next_state_name
self.nb_state += 1