From 162ceb4270a5f82191b99605e3d3ad19fca27d60 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sat, 25 Dec 2021 17:03:00 -0500 Subject: [PATCH] Repair error --- setup.py | 2 +- syndicate/actor.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2a9993a..2911246 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: setup( name="syndicate-py", - version="0.7.0", + version="0.7.1", author="Tony Garnock-Jones", author_email="tonyg@leastfixedpoint.com", license="GNU General Public License v3 or later (GPLv3+)", diff --git a/syndicate/actor.py b/syndicate/actor.py index 36edca6..50b4b8d 100644 --- a/syndicate/actor.py +++ b/syndicate/actor.py @@ -375,7 +375,7 @@ class Turn: with ActiveFacet(f): a() f.on_stop(lambda: f.actor.dataflow_graph.forget_subject(subject)) - f.actor.dataflow_graph.with_subject(subject, lambda: subject(self)) + f.actor.dataflow_graph.with_subject(subject, lambda: subject()) def publish_dataflow(self, assertion_function): endpoint = DataflowPublication(assertion_function)