mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
simplify packages insertion
This commit is contained in:
parent
fd8a931608
commit
56e80566f9
1 changed files with 6 additions and 14 deletions
20
electrum
20
electrum
|
@ -26,23 +26,15 @@ import sys
|
||||||
import time
|
import time
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
is_local = False
|
is_bundle = getattr(sys, 'frozen', False)
|
||||||
is_android = False
|
|
||||||
|
|
||||||
if sys.platform == 'darwin':
|
|
||||||
is_bundle = getattr(sys, 'frozen') == "macosx_app"
|
|
||||||
if is_bundle:
|
|
||||||
sys.path.insert(0, os.getcwd() + "/lib/python2.7/packages")
|
|
||||||
else:
|
|
||||||
is_bundle = getattr(sys, 'frozen', False)
|
|
||||||
is_local = not is_bundle and os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
|
|
||||||
is_android = 'ANDROID_DATA' in os.environ
|
|
||||||
if is_local:
|
|
||||||
sys.path.append('packages')
|
|
||||||
|
|
||||||
is_local = not is_bundle and os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
|
is_local = not is_bundle and os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
|
||||||
is_android = 'ANDROID_DATA' in os.environ
|
is_android = 'ANDROID_DATA' in os.environ
|
||||||
|
|
||||||
|
if is_local:
|
||||||
|
sys.path.insert(0, 'packages')
|
||||||
|
elif is_bundle and sys.platform=='darwin':
|
||||||
|
sys.path.insert(0, os.getcwd() + "/lib/python2.7/packages")
|
||||||
|
|
||||||
import __builtin__
|
import __builtin__
|
||||||
__builtin__.use_local_modules = is_local or is_android
|
__builtin__.use_local_modules = is_local or is_android
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue