Repair error

This commit is contained in:
Tony Garnock-Jones 2021-12-25 17:03:00 -05:00
parent 37da60cf0b
commit 162ceb4270
2 changed files with 2 additions and 2 deletions

View File

@ -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+)",

View File

@ -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)