# HG changeset patch # User Madhusudan.C.S # Date 1294433069 -19800 # Node ID eae55e6b109f41351c1c90d2b623d523cdb12515 # Parent 5b3204f3618c02724b0dbb848f4c0f009e37181d Template directories variable must be a tuple. diff -r 5b3204f3618c -r eae55e6b109f pytask/settings.py --- a/pytask/settings.py Sat Jan 08 01:30:37 2011 +0530 +++ b/pytask/settings.py Sat Jan 08 02:14:29 2011 +0530 @@ -9,7 +9,7 @@ TEMPLATE_DEBUG = DEBUG ADMINS = ( - # ('Your Name', 'your_email@domain.com'), + ('Madhusudan C.S.', 'madhusudancs@fossee.in'), ) MANAGERS = ADMINS @@ -28,7 +28,7 @@ # although not all choices may be available on all operating systems. # If running in a Windows environment this must be set to the same as your # system time zone. -TIME_ZONE = 'America/Chicago' +TIME_ZONE = 'Asia/Kolkata' # Language code for this installation. All choices can be found here: # http://www.i18nguy.com/unicode/language-identifiers.html @@ -76,7 +76,7 @@ # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - os.path.join(os.path.dirname(__file__), 'templates') + os.path.join(os.path.dirname(__file__), 'templates'), ) ACCOUNT_ACTIVATION_DAYS = 7