some freezers publish also __file__ in globals()

This commit is contained in:
niphlod
2014-10-22 22:04:52 +02:00
parent 274634a71a
commit 98f245655b
2 changed files with 6 additions and 6 deletions
+3 -3
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)
+3 -3
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)