diff options
author | Ben Connors <benconnors@outlook.com> | 2019-02-22 15:35:23 -0500 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-02-22 15:35:23 -0500 |
commit | a51746f63d5c55c03cee4e95a36129fe86b53b14 (patch) | |
tree | d39a435e758ffc660057fd8c7aa7cd4ac0d3431c | |
parent | f36b02ce4917bddb46fe4737409ad379310fe81e (diff) |
Fix Show render_all
- Nest the render in a tuple to match with Chaser
-rwxr-xr-x | blc/workspace.py | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |