Skip to content

Commit 15e540b

Browse files
committed
qtvcp -aux_program _loader -use python3 to load gcode ripper
'python' won't load in mint at least (must be python2 or python3)
1 parent 2bb3de3 commit 15e540b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/python/qtvcp/lib/aux_program_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def load_gcode_ripper(self,*args):
3131
if args:
3232
pass
3333
else:
34-
p = os.popen('python {}'.format(os.path.join(PATH.LIBDIR, 'ripper/gcode_ripper.py')))
34+
p = os.popen('python3 {}'.format(os.path.join(PATH.LIBDIR, 'ripper/gcode_ripper.py')))
3535

3636
# opens halshow
3737
def load_halshow(self, *args):

0 commit comments

Comments
 (0)