diff --git a/app.py b/app.py
index 89512d257d2fec221bcd320561bb4ebe006c2c13..4245feecb044ada5bf10deae57296ba980b5b261 100644
--- a/app.py
+++ b/app.py
@@ -12,7 +12,7 @@ app.config.from_pyfile('config.py', silent=True)
 
 @app.route('/')
 def just_testing():
-    return cfg
+    return str(app.config['SQLALCHEMY_URI'])
     return "Brotato!"
 
 if __name__ == '__main__':