소스 검색

Change example ADMINS to show a tuple

Fixes #6919
Brian Candler 4 년 전
부모
커밋
b04f262642
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      netbox/netbox/configuration.example.py

+ 1 - 1
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
 # 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).
 # application errors (assuming correct email settings are provided).
 ADMINS = [
 ADMINS = [
-    # ['John Doe', 'jdoe@example.com'],
+    # ('John Doe', 'jdoe@example.com'),
 ]
 ]
 
 
 # URL schemes that are allowed within links in NetBox
 # URL schemes that are allowed within links in NetBox