You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
267 B
Python
10 lines
267 B
Python
5 years ago
|
import os
|
||
|
|
||
|
cwd = os.environ.get('TILDE_CONF')
|
||
|
if cwd is None:
|
||
|
cwd = os.getcwd() + "/applicationsconfig.ini"
|
||
|
else:
|
||
|
if os.path.isfile(cwd) is False:
|
||
|
cwd = os.getcwd() + "/applicationsconfig.ini"
|
||
|
# cwd is now either cwd/applicationsconfig or $TILDE_CONF
|