Merge pull request #685 from Bevaz/bug_video_output_filename
Enframed output video filename with quotes.
This commit is contained in:
commit
596afddfb6
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue