mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-05 19:06:09 +08:00
Fixed running of pypy (strange, this patch is in Alpha2 for SF45...)
This commit is contained in:
parent
5c3c45a51f
commit
83f4e1a769
@ -745,7 +745,7 @@
|
||||
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
||||
+ skeinforge_craft.writeOutput(fileName)
|
||||
+ else:
|
||||
+ subprocess.call([pypyExe, fileName])
|
||||
+ subprocess.call([pypyExe, __file__, fileName])
|
||||
|
||||
def save(self):
|
||||
'Profile has been saved and profile menu should be updated.'
|
||||
|
@ -432,7 +432,7 @@
|
||||
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
||||
+ skeinforge_craft.writeOutput(fileName)
|
||||
+ else:
|
||||
+ subprocess.call([pypyExe, fileName])
|
||||
+ subprocess.call([pypyExe, __file__, fileName])
|
||||
|
||||
def save(self):
|
||||
'Profile has been saved and profile menu should be updated.'
|
||||
|
@ -4565,7 +4565,7 @@
|
||||
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
||||
+ skeinforge_craft.writeOutput(fileName)
|
||||
+ else:
|
||||
+ subprocess.call([pypyExe, fileName])
|
||||
+ subprocess.call([pypyExe, __file__, fileName])
|
||||
|
||||
def save(self):
|
||||
'Profile has been saved and profile menu should be updated.'
|
||||
|
Loading…
x
Reference in New Issue
Block a user