From a9a89753508e5c6eaa136dededf0a65ffd0c8444 Mon Sep 17 00:00:00 2001 From: acn Date: Mon, 31 Oct 2016 16:43:42 +0100 Subject: [PATCH] Bugfix --- config.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/config.py b/config.py index dc7b343..c08fd3e 100644 --- a/config.py +++ b/config.py @@ -7,10 +7,12 @@ Configuration file import logging ## define the location of rtx pages -## rtx searches all directories and serves the page from the first one (lowest index) -PAGES[0]="pages/" -PAGES[1]="presentation/" -PAGES[2]="demopages/" +## rtx searches all directories and serves the page from the first one +PAGES=[ + "pages/", + "presentation/", + "demopages/", + ] ## logging settings: # loglevel values: DEBUG (all messages) > INFO > WARNING > ERROR > CRITICAL (only cricital messages)