Fixed running of pypy (strange, this patch is in Alpha2 for SF45...)
This commit is contained in:
parent
5c3c45a51f
commit
83f4e1a769
3 changed files with 3 additions and 3 deletions
|
|
@ -745,7 +745,7 @@
|
||||||
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
||||||
+ skeinforge_craft.writeOutput(fileName)
|
+ skeinforge_craft.writeOutput(fileName)
|
||||||
+ else:
|
+ else:
|
||||||
+ subprocess.call([pypyExe, fileName])
|
+ subprocess.call([pypyExe, __file__, fileName])
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
'Profile has been saved and profile menu should be updated.'
|
'Profile has been saved and profile menu should be updated.'
|
||||||
|
|
|
||||||
|
|
@ -432,7 +432,7 @@
|
||||||
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
||||||
+ skeinforge_craft.writeOutput(fileName)
|
+ skeinforge_craft.writeOutput(fileName)
|
||||||
+ else:
|
+ else:
|
||||||
+ subprocess.call([pypyExe, fileName])
|
+ subprocess.call([pypyExe, __file__, fileName])
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
'Profile has been saved and profile menu should be updated.'
|
'Profile has been saved and profile menu should be updated.'
|
||||||
|
|
|
||||||
|
|
@ -4565,7 +4565,7 @@
|
||||||
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
+ if pypyExe == False or platform.python_implementation() == "PyPy":
|
||||||
+ skeinforge_craft.writeOutput(fileName)
|
+ skeinforge_craft.writeOutput(fileName)
|
||||||
+ else:
|
+ else:
|
||||||
+ subprocess.call([pypyExe, fileName])
|
+ subprocess.call([pypyExe, __file__, fileName])
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
'Profile has been saved and profile menu should be updated.'
|
'Profile has been saved and profile menu should be updated.'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue