diff --git a/VERSION b/VERSION index bf3b58aa..ffe034e4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-06-07 23:25:36) dev +Version 2.00.0 (2012-06-08 15:20:20) dev diff --git a/setup_exe.py b/setup_exe.py index 5c3df1d1..965efe03 100755 --- a/setup_exe.py +++ b/setup_exe.py @@ -110,7 +110,7 @@ if remove_msft_dlls: os.unlink(os.path.join('dist',f)) except: print "unable to delete dist/"+f - sys.exit(1) + #sys.exit(1) #Should we include applications? diff --git a/web2py.py b/web2py.py index 69829978..d6d41ec2 100755 --- a/web2py.py +++ b/web2py.py @@ -17,6 +17,11 @@ import gluon.widget # Start Web2py and Web2py cron service! if __name__ == '__main__': + try: + from multiprocessing import freeze_support + freeze_support() + except: + sys.stderr.write('Sorry, -K only supported for python 2.6-2.7\n') gluon.widget.start(cron=True)