summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Connors <benconnors@outlook.com>2019-02-22 23:12:15 -0500
committerBen Connors <benconnors@outlook.com>2019-02-22 23:12:15 -0500
commit422b8f7485b95278d0207a7749577dd960f5f206 (patch)
treed03b14551e48c2677ef8a658d859a5deaf12ec62
parenta51746f63d5c55c03cee4e95a36129fe86b53b14 (diff)
Fix Show render_all
- Nest in tuple to match Chaser
-rwxr-xr-xblc/workspace.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blc/workspace.py b/blc/workspace.py
index 9905d2d..404c1ee 100755
--- a/blc/workspace.py
+++ b/blc/workspace.py
@@ -772,7 +772,7 @@ class Show(Function, PreRenderable):
This function returns:
- cues, audio_cues
+ ((cues, audio_cues,),)
Where cues is of the form:
@@ -819,7 +819,7 @@ class Show(Function, PreRenderable):
break
t += max(nx, minnx)
- return tuple(cues), tuple(sorted(acues, key=lambda a: a[1]))
+ return ((tuple(cues), tuple(sorted(acues, key=lambda a: a[1])),),)
def __init__(self, id_, name, tracks):
scope = set()