From a85a364a5eb02bad6dbddeb137505f260520a134 Mon Sep 17 00:00:00 2001 From: Seth Woodworth Date: Mon, 14 Jan 2013 14:37:05 -0500 Subject: [PATCH] set admins + admin emails and set America/New_York timezone (US/Eastern) --- karmaworld/settings/common.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/karmaworld/settings/common.py b/karmaworld/settings/common.py index 81794c9..7a27beb 100644 --- a/karmaworld/settings/common.py +++ b/karmaworld/settings/common.py @@ -1,4 +1,7 @@ -"""Common settings and globals.""" +#!/usr/bin/env python +# -*- coding:utf8 -*- +# Copyright (C) 2012 FinalsClub Foundation +""" Common settings and globals. """ from datetime import timedelta @@ -36,7 +39,9 @@ TEMPLATE_DEBUG = DEBUG ########## MANAGER CONFIGURATION # See: https://docs.djangoproject.com/en/dev/ref/settings/#admins ADMINS = ( - ('Your Name', 'your_email@example.com'), + ('Seth Woodworth', 'seth@finalsclub.org'), + ('Charles Holbrow', 'charles@finalsclub.org'), + ('Andrew Magliozzi', 'andrew@finalsclub.org'), ) # See: https://docs.djangoproject.com/en/dev/ref/settings/#managers @@ -61,7 +66,7 @@ DATABASES = { ########## GENERAL CONFIGURATION # See: https://docs.djangoproject.com/en/dev/ref/settings/#time-zone -TIME_ZONE = 'America/Los_Angeles' +TIME_ZONE = 'America/New_York' # See: https://docs.djangoproject.com/en/dev/ref/settings/#language-code LANGUAGE_CODE = 'en-us' -- 2.25.1