Merge pull request #685 from Bevaz/bug_video_output_filename

Enframed output video filename with quotes.
This commit is contained in:
Gina Häußge 2014-12-20 18:05:50 +01:00
commit 596afddfb6

View file

@ -299,7 +299,7 @@ class Timelapse(object):
# finalize command with output file
self._logger.debug("Rendering movie to %s" % output)
command.append(output)
command.append("\"" + output + "\"")
eventManager().fire(Events.MOVIE_RENDERING, {"gcode": self._gcodeFile, "movie": output, "movie_basename": os.path.basename(output)})
command_str = " ".join(command)