From f454689117d3a7f3bacec136e53eff6e81716bf0 Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 6 Jan 2017 00:03:50 +0100 Subject: Merging DB parameters from two tables --- ausbutler/tour_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ausbutler/tour_config.py') diff --git a/ausbutler/tour_config.py b/ausbutler/tour_config.py index 43a8dc7..bf6451d 100644 --- a/ausbutler/tour_config.py +++ b/ausbutler/tour_config.py @@ -1,6 +1,6 @@ from .config import load_config from .db import get_session -from .model import Translation, Admin +from .model import Translation, Parameters session = get_session() @@ -23,4 +23,4 @@ class Translations(object): def detect_language(): return 'en' if Translations.get_translation('ROUND').lower().strip() == 'round' else 'pl' -Constants = session.query(Admin).one() +Constants = session.query(Parameters).one() -- cgit v1.2.3