diff options
author | Ben Connors <benconnors@outlook.com> | 2019-02-22 23:12:15 -0500 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-02-22 23:12:15 -0500 |
commit | 422b8f7485b95278d0207a7749577dd960f5f206 (patch) | |
tree | d03b14551e48c2677ef8a658d859a5deaf12ec62 | |
parent | a51746f63d5c55c03cee4e95a36129fe86b53b14 (diff) |
Fix Show render_all
- Nest in tuple to match Chaser
-rwxr-xr-x | blc/workspace.py | 4 |
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() |