fix SimActor get_fragment

This commit is contained in:
Sebastien Bourdeauducq 2012-06-12 17:52:08 +02:00
parent 973c00938d
commit ce9e35b8ef
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class Token:
#
# NB: the possibility to push several tokens at once is important to interact
# with actors that only accept a group of tokens when all of them are available.
class SimActor(Actor, PureSimulable):
class SimActor(PureSimulable, Actor):
def __init__(self, generator, *endpoint_descriptions, **misc):
self.generator = generator
self.active = set()