summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flaskr/__init__.py2
-rw-r--r--flaskr/views/auth.py (renamed from flaskr/auth.py)0
2 files changed, 1 insertions, 1 deletions
diff --git a/flaskr/__init__.py b/flaskr/__init__.py
index dffc858..0366365 100644
--- a/flaskr/__init__.py
+++ b/flaskr/__init__.py
@@ -32,7 +32,7 @@ def create_app(test_config=None):
from . import db
db.init_app(app)
- from . import auth
+ from .views import auth
app.register_blueprint(auth.bp)
return app \ No newline at end of file
diff --git a/flaskr/auth.py b/flaskr/views/auth.py
index 3689eba..3689eba 100644
--- a/flaskr/auth.py
+++ b/flaskr/views/auth.py