summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcapture-pipeline5
1 files changed, 3 insertions, 2 deletions
diff --git a/capture-pipeline b/capture-pipeline
index 5aff00e..d64603b 100755
--- a/capture-pipeline
+++ b/capture-pipeline
@@ -553,9 +553,10 @@ def shot_register(sequence, shot):
take_register(sequence, shot, take)
def sequence_process(sequence):
- label = sequence["label"]
+ if "label" in sequence:
+ label = sequence["label"]
- print("# sequence: " + label + "\n")
+ print("# sequence: " + label + "\n")
shots = sequence["shots"]