aboutsummaryrefslogtreecommitdiff
path: root/roka.py
diff options
context:
space:
mode:
authorDylan Garrett <dylan.garrett@gmail.com>2021-06-06 15:58:51 -0700
committerDylan Garrett <dylan.garrett@gmail.com>2021-06-06 15:58:51 -0700
commit3d850b4d695acb4de3616eca947cfb0b7390154e (patch)
treef4bee38d206370e169f2aef7f471448e437ecbf7 /roka.py
parent0300ecf7be0063a60a5b603c6c5134e0afa00593 (diff)
downloadroka-3d850b4d695acb4de3616eca947cfb0b7390154e.tar.gz
roka-3d850b4d695acb4de3616eca947cfb0b7390154e.zip
Allow base_url with no app.cfg
Diffstat (limited to 'roka.py')
-rwxr-xr-xroka.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/roka.py b/roka.py
index 4b6a523..8d81641 100755
--- a/roka.py
+++ b/roka.py
@@ -9,7 +9,8 @@ from lib.util import check_auth, escape, generate_rss, read_cache
abs_path = os.path.dirname(os.path.abspath(__file__))
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'))
cache_path = os.path.join(abs_path, 'cache')
json_path = os.path.join(cache_path, 'audiobooks.json')