Skip to content

Commit

Permalink
Update support.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski committed Nov 21, 2024
1 parent af509b0 commit 0a227bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upcean/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_importing_script_path():

__use_env_file__ = True
__use_ini_file__ = True
if('PYUPCEAN_CONFIG_FILE' in os.environ and os.path.exists(os.environ['PYUPCEAN_CONFIG_FILE']) and __use_env_file__)
if('PYUPCEAN_CONFIG_FILE' in os.environ and os.path.exists(os.environ['PYUPCEAN_CONFIG_FILE']) and __use_env_file__):
scriptconf = os.path.join(os.path.dirname(get_importing_script_path()), "upcean.ini")
else:
scriptconf = os.path.join(os.path.dirname(get_importing_script_path()), "upcean.ini")
Expand Down

0 comments on commit 0a227bf

Please sign in to comment.