From 5a7873f9386cd0b5a2f8c1452715771972673fc6 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sun, 16 Jun 2019 18:07:58 -0700 Subject: [PATCH] attempting relative import fix --- ci/ci_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/ci_test.py b/ci/ci_test.py index d2eec7a..e3fdb98 100644 --- a/ci/ci_test.py +++ b/ci/ci_test.py @@ -184,9 +184,9 @@ def ci_config(): def flask_dev_server(host, port): """Starts Flask development server for testing without WSGI/Reverse Proxy""" try: - from hyperglass import hyperglass - from hyperglass import configuration - from hyperglass import render + from ..hyperglass import hyperglass + from ..hyperglass import configuration + from ..hyperglass import render render.css() logger.info("Starting Flask development server")