changed conversion filename to fixed "temp.svg", so its doesn't use up all the space by creating a new file for every new conversion.
This commit is contained in:
parent
597481905b
commit
8c218b21f8
1 changed files with 1 additions and 1 deletions
|
|
@ -473,7 +473,7 @@ def gcodeConvertCommand():
|
|||
import os
|
||||
name, _ = os.path.splitext(data['gcode'])
|
||||
|
||||
filename = target + "/" + name + ".svg"
|
||||
filename = target + "/temp.svg"
|
||||
class Wrapper(object):
|
||||
def __init__(self, filename, content):
|
||||
self.filename = filename
|
||||
|
|
|
|||
Loading…
Reference in a new issue