From ce9e35b8efe93bd8312fc83836a79b69076b481b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 12 Jun 2012 17:52:08 +0200 Subject: [PATCH] fix SimActor get_fragment --- migen/actorlib/sim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migen/actorlib/sim.py b/migen/actorlib/sim.py index d3f5a66f..b7901915 100644 --- a/migen/actorlib/sim.py +++ b/migen/actorlib/sim.py @@ -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() -- 2.30.2