124:4e5ab3804362 | 125:13f16f4e355a |
---|---|
5 | 5 |
6 """ | 6 """ |
7 Script to find the cxfreeze directory from running Python interpreter. | 7 Script to find the cxfreeze directory from running Python interpreter. |
8 """ | 8 """ |
9 | 9 |
10 from __future__ import unicode_literals | |
11 | |
12 import os | 10 import os |
13 import sys | 11 import sys |
14 | 12 |
15 for sysPath in sys.path: | 13 for sysPath in sys.path: |
16 modpath = os.path.join(sysPath, "cx_Freeze") | 14 modpath = os.path.join(sysPath, "cx_Freeze") |