From 3d850b4d695acb4de3616eca947cfb0b7390154e Mon Sep 17 00:00:00 2001 From: Dylan Garrett Date: Sun, 6 Jun 2021 15:58:51 -0700 Subject: Allow base_url with no app.cfg --- lib/books.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/books.py') diff --git a/lib/books.py b/lib/books.py index 84754f6..6f3510b 100644 --- a/lib/books.py +++ b/lib/books.py @@ -15,7 +15,8 @@ JSON_PATH = os.path.join(CACHE_PATH, 'audiobooks.json') # use Flask's config parser, configparser would be hacky APP = Flask(__name__) -APP.config.from_pyfile(os.path.join(ABS_PATH, '../', 'app.cfg')) +if os.path.exists(os.path.join(ABS_PATH, '../', 'app.cfg')): + APP.config.from_pyfile(os.path.join(ABS_PATH, '../', 'app.cfg')) class Books: def __init__(self): -- cgit v1.2.3-54-g00ecf