From 349733c6dd2f8a351d2a188e7b148bf9c089ca04 Mon Sep 17 00:00:00 2001 From: Brian Candler Date: Tue, 31 Aug 2021 19:51:53 +0100 Subject: [PATCH] Redirect users on error to the GitHub discussion forum Fixes #7102 --- netbox/templates/500.html | 2 +- netbox/utilities/management/commands/makemigrations.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox/templates/500.html b/netbox/templates/500.html index e0207f74d..097699ffc 100644 --- a/netbox/templates/500.html +++ b/netbox/templates/500.html @@ -32,7 +32,7 @@ Python version: {{ python_version }} NetBox version: {{ netbox_version }}

- If further assistance is required, please post to the NetBox mailing list. + If further assistance is required, please post to the NetBox discussion forum on GitHub.

Home Page diff --git a/netbox/utilities/management/commands/makemigrations.py b/netbox/utilities/management/commands/makemigrations.py index 8b5cd1bc7..6710a35e2 100644 --- a/netbox/utilities/management/commands/makemigrations.py +++ b/netbox/utilities/management/commands/makemigrations.py @@ -21,8 +21,8 @@ class Command(_Command): raise CommandError( "This command is available for development purposes only. It will\n" "NOT resolve any issues with missing or unapplied migrations. For assistance,\n" - "please post to the NetBox mailing list:\n" - " https://groups.google.com/g/netbox-discuss" + "please post to the NetBox discussion forum on GitHub:\n" + " https://github.com/netbox-community/netbox/discussions" ) super().handle(*args, **kwargs)