Template directories variable must be a tuple. buildout
authorMadhusudan.C.S <madhusudancs@gmail.com>
Sat, 08 Jan 2011 02:14:29 +0530
branchbuildout
changeset 232 eae55e6b109f
parent 231 5b3204f3618c
child 233 cb3fbfc78c34
Template directories variable must be a tuple.
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