From: Seth Woodworth Date: Mon, 14 Jan 2013 19:37:05 +0000 (-0500) Subject: set admins + admin emails and set America/New_York timezone (US/Eastern) X-Git-Tag: release-20150131~566^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a85a364a5eb02bad6dbddeb137505f260520a134;p=oweals%2Fkarmaworld.git set admins + admin emails and set America/New_York timezone (US/Eastern) --- 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'