summaryrefslogtreecommitdiff
path: root/qvisqve/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'qvisqve/app.py')
-rw-r--r--qvisqve/app.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qvisqve/app.py b/qvisqve/app.py
index e608a39..a1f1910 100644
--- a/qvisqve/app.py
+++ b/qvisqve/app.py
@@ -40,7 +40,7 @@ def read_config(filename):
def check_config(cfg):
for key in cfg:
if cfg[key] is None:
- raise Exception('Configration %s should not be None' % key)
+ raise Exception('Configuration %s should not be None' % key)
_counter = slog.Counter()
@@ -58,6 +58,7 @@ default_config = {
'token-private-key': None,
'token-lifetime': None,
'clients': None,
+ 'applications': None,
}