aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/route_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/route_manager.py')
-rw-r--r--pysite/route_manager.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pysite/route_manager.py b/pysite/route_manager.py
index 8133c486..09202d0c 100644
--- a/pysite/route_manager.py
+++ b/pysite/route_manager.py
@@ -5,12 +5,11 @@ import os
from flask import Flask, abort, g
+from pysite.base_route import BaseView, ErrorView
import rethinkdb
from pysite.base_route import BaseView, ErrorView, RouteView
-__author__ = "Gareth Coles"
-
DB_HOST = os.environ.get("RETHINKDB_HOST")
DB_PORT = os.environ.get("RETHINKDB_PORT")
DB_DATABASE = os.environ.get("RETHINKDB_DATABASE")