From b04f26264261990f58f0505f1d0c3f134f1ed07f Mon Sep 17 00:00:00 2001 From: Brian Candler Date: Mon, 9 Aug 2021 07:37:46 +0100 Subject: [PATCH] Change example ADMINS to show a tuple Fixes #6919 --- netbox/netbox/configuration.example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/netbox/configuration.example.py b/netbox/netbox/configuration.example.py index a5c5521f3..cac4a9c85 100644 --- a/netbox/netbox/configuration.example.py +++ b/netbox/netbox/configuration.example.py @@ -69,7 +69,7 @@ SECRET_KEY = '' # Specify one or more name and email address tuples representing NetBox administrators. These people will be notified of # application errors (assuming correct email settings are provided). ADMINS = [ - # ['John Doe', 'jdoe@example.com'], + # ('John Doe', 'jdoe@example.com'), ] # URL schemes that are allowed within links in NetBox