Template directories variable must be a tuple.
--- 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