Actually OSX app maded with py2app can parallelize just fine

This commit is contained in:
Grant T. Olson 2013-08-23 16:10:57 -04:00
parent a20213f1e8
commit bd489408c7
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ def _doFastPoW(target, initialHash):
time.sleep(0.2)
def run(target, initialHash):
if not frozen:
if frozen == "macosx_app" or not frozen:
return _doFastPoW(target, initialHash)
else:
return _doSafePoW(target, initialHash)