mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 21:05:11 +00:00
fix #991
This commit is contained in:
parent
56e80566f9
commit
4eda748506
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ def data_dir():
|
|||
if __builtin__.use_local_modules:
|
||||
return local_data_dir()
|
||||
else:
|
||||
is_frozen = getattr(sys, 'frozen')
|
||||
is_frozen = getattr(sys, 'frozen', False)
|
||||
if is_frozen:
|
||||
if is_frozen == "macosx_app":
|
||||
basedir = os.path.abspath(".")
|
||||
|
|
Loading…
Add table
Reference in a new issue