aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/error_handlers
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/views/error_handlers')
-rw-r--r--pysite/views/error_handlers/http_4xx.py2
-rw-r--r--pysite/views/error_handlers/http_5xx.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pysite/views/error_handlers/http_4xx.py b/pysite/views/error_handlers/http_4xx.py
index 1667adcf..731204f9 100644
--- a/pysite/views/error_handlers/http_4xx.py
+++ b/pysite/views/error_handlers/http_4xx.py
@@ -26,6 +26,6 @@ class Error400View(ErrorView):
return self.render(
"errors/error.html", code=error.code, req=request, error_title=error_desc,
error_message=f"{error_desc} If you believe we have made a mistake, please "
- "<a href='https://gitlab.com/discord-python/projects/site/issues'>"
+ "<a href='https://gitlab.com/python-discord/projects/site/issues'>"
"open an issue on our GitLab</a>."
), error.code
diff --git a/pysite/views/error_handlers/http_5xx.py b/pysite/views/error_handlers/http_5xx.py
index c9ffa007..489eb5e5 100644
--- a/pysite/views/error_handlers/http_5xx.py
+++ b/pysite/views/error_handlers/http_5xx.py
@@ -36,6 +36,6 @@ class Error500View(ErrorView):
"errors/error.html", code=error.code, req=request, error_title=error_desc,
error_message="An error occurred while processing this request, please try "
"again later. If you believe we have made a mistake, please "
- "<a href='https://gitlab.com/discord-python/projects/site/issues'>file an issue on our"
+ "<a href='https://gitlab.com/python-discord/projects/site/issues'>file an issue on our"
" GitLab</a>."
), error.code