summaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'run.py')
-rw-r--r--run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index e1b6a58..975daa4 100644
--- a/run.py
+++ b/run.py
@@ -132,7 +132,7 @@ def dilate_frames(moduleNetwork, tensorOutput, frames, dilate):
nextFrame = frames[i]
new_frames += [firstFrame]
new_frames += process_tree(moduleNetwork, firstFrame, nextFrame, tensorOutput, dilate, 1)
- new_frames += nextFrame
+ new_frames += [nextFrame]
return new_frames
def store_frames(frames, outputPath, inputFirst=None, inputSecond=None):