This commit is contained in:
petrucci4prez 2017-06-10 02:15:16 -04:00
parent 24fb39cc27
commit 7bae6680c8
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class State:
raise Exception('Illegal signal')
def addTransition(self, signal, state):
self._transTbl[signal] = weakref.ref(state)
self._transTbl[signal] = state
def __str__(self):
return self.name