comparison mysite/settings/production.py @ 35:21172e9be136

Fix typo in production.py where it was using old project_path variable instead of PROJECT_PATH.
author Brian Neal <bgneal@gmail.com>
date Wed, 30 Nov 2011 00:11:23 +0000
parents 903260593491
children c1f3658830e0
comparison
equal deleted inserted replaced
34:903260593491 35:21172e9be136
56 }, 56 },
57 'file': { 57 'file': {
58 'class': 'logging.handlers.RotatingFileHandler', 58 'class': 'logging.handlers.RotatingFileHandler',
59 'level': 'DEBUG', 59 'level': 'DEBUG',
60 'formatter': 'simple', 60 'formatter': 'simple',
61 'filename': os.path.join(project_path, 'logs', 'madeira.log'), 61 'filename': os.path.join(PROJECT_PATH, 'logs', 'madeira.log'),
62 'mode': 'a', 62 'mode': 'a',
63 'maxBytes': 100 * 1024, 63 'maxBytes': 100 * 1024,
64 'backupCount': 10, 64 'backupCount': 10,
65 }, 65 },
66 'mail_admins': { 66 'mail_admins': {