From b35591d882b225b8b56e8af481d69dfee2658358 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 25 Jul 2018 14:41:03 +0200 Subject: [PATCH] docker: drop names/emails from settings.py The user needs to set this appropriately, there should not be a default. Signed-off-by: Paul Eggleton --- docker/settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/settings.py b/docker/settings.py index 3d2c4c2..a513e52 100644 --- a/docker/settings.py +++ b/docker/settings.py @@ -8,8 +8,7 @@ import os DEBUG = os.getenv('DEBUG', False) ADMINS = ( - ('Paul Eggleton', 'paul.eggleton@linux.intel.com'), - ('Michael Halstead', 'mhalstead@linuxfoundation.org'), + # ('Your Name', 'your_email@example.com'), ) MANAGERS = ADMINS