diff options
author | Stan Seibert <stan@mtrr.org> | 2011-09-20 10:27:38 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-09-20 10:27:38 -0400 |
commit | 85c94f5d0127256fb79afcea8600011a421af603 (patch) | |
tree | fe7c2d837b912b4d5d54a4c7c1a6307c59c1b3e6 | |
parent | 006a37017d3283f79e84b6814b0b72c2ccea588b (diff) | |
download | chroma-85c94f5d0127256fb79afcea8600011a421af603.tar.gz chroma-85c94f5d0127256fb79afcea8600011a421af603.tar.bz2 chroma-85c94f5d0127256fb79afcea8600011a421af603.zip |
Fix bug printing output movie filename
-rw-r--r-- | chroma/camera.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chroma/camera.py b/chroma/camera.py index 575d13d..927a17d 100644 --- a/chroma/camera.py +++ b/chroma/camera.py @@ -76,7 +76,7 @@ def encode_movie(dir): shutil.rmtree(dir) - print 'movie saved to %s.' % filename + print 'movie saved to %s.' % path class Camera(multiprocessing.Process): "The camera class is used to render a Geometry object." |