Fixed running of pypy (strange, this patch is in Alpha2 for SF45...)

master
daid 2012-01-10 17:31:08 +01:00
parent 5c3c45a51f
commit 83f4e1a769
3 changed files with 3 additions and 3 deletions

View File

@ -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.'

View File

@ -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.'

View File

@ -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.'