diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 00:48:21 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 00:48:21 +0530 |
commit | adf9a930e718d4651cbcdc8353f56113c02d241d (patch) | |
tree | 502bbc7954308707aba309d85d1126045ef0f73f | |
parent | c44b706be9e4b9971341ca8bafbd63bd689bf874 (diff) |
handled 404 and 500
-rw-r--r-- | app/views/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/main.py b/app/views/main.py index 2460d39..4814007 100644 --- a/app/views/main.py +++ b/app/views/main.py @@ -1,7 +1,7 @@ from app import app from app.forms.app_forms import MyForm from flask import render_template, flash -from app.views import auth +from app.views import auth, error_pages from app.misc_func import flash_errors theme = "original" |