Merge pull request #535 from niphlod/fix/binaries_switch

fix binaries build. thanks @David Ripplinger
This commit is contained in:
mdipierro
2014-10-22 21:29:52 -05:00
2 changed files with 6 additions and 6 deletions

View File

@@ -5,10 +5,10 @@ import sys
import os
import optparse
if '__file__' in globals():
path = os.path.dirname(os.path.abspath(__file__))
elif hasattr(sys, 'frozen'):
if hasattr(sys, 'frozen'):
path = os.path.dirname(os.path.abspath(sys.executable))
elif '__file__' in globals():
path = os.path.dirname(os.path.abspath(__file__))
else:
path = os.getcwd()
os.chdir(path)

View File

@@ -4,10 +4,10 @@
import os
import sys
if '__file__' in globals():
path = os.path.dirname(os.path.abspath(__file__))
elif hasattr(sys, 'frozen'):
if hasattr(sys, 'frozen'):
path = os.path.dirname(os.path.abspath(sys.executable)) # for py2exe
elif '__file__' in globals():
path = os.path.dirname(os.path.abspath(__file__))
else: # should never happen
path = os.getcwd()
os.chdir(path)