set admins + admin emails and set America/New_York timezone (US/Eastern)
authorSeth Woodworth <seth@sethish.com>
Mon, 14 Jan 2013 19:37:05 +0000 (14:37 -0500)
committerSeth Woodworth <seth@sethish.com>
Mon, 14 Jan 2013 19:37:05 +0000 (14:37 -0500)
karmaworld/settings/common.py

index 81794c9e9c4b7bedab6c4bf76507dda6acb43e03..7a27beb342b0d09f8ec19ad3a0fb9b06d693259e 100644 (file)
@@ -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'