diff --git a/examples/restarting/main.py b/examples/restarting/main.py index f0b93b3..e79014e 100644 --- a/examples/restarting/main.py +++ b/examples/restarting/main.py @@ -11,7 +11,7 @@ class AutoCounterState: # increments count every second and emits output event class AutoCounter(AtomicDEVS): def __init__(self, start): - AtomicDEVS.__init__(self, "System") + AtomicDEVS.__init__(self, "AutoCounter") self.state = AutoCounterState(count=start) self.outport = self.addOutPort("outport")