From a51746f63d5c55c03cee4e95a36129fe86b53b14 Mon Sep 17 00:00:00 2001 From: Ben Connors Date: Fri, 22 Feb 2019 15:35:23 -0500 Subject: Fix Show render_all - Nest the render in a tuple to match with Chaser --- blc/workspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blc/workspace.py b/blc/workspace.py index 495da72..9905d2d 100755 --- a/blc/workspace.py +++ b/blc/workspace.py @@ -810,7 +810,7 @@ class Show(Function, PreRenderable): vals, tacues, nx, data = self.render(t, data=data) for c,v in vals: if t == 0 or current[c] != v: - changes.append((c.address, v)) + changes.append((c, v)) current[c] = v if changes: cues.append((t,tuple(changes))) -- cgit v1.2.3