Mercurial > public > madeira
changeset 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 | 7236f526e414 |
files | mysite/settings/production.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mysite/settings/production.py Tue Nov 29 03:14:25 2011 +0000 +++ b/mysite/settings/production.py Wed Nov 30 00:11:23 2011 +0000 @@ -58,7 +58,7 @@ 'class': 'logging.handlers.RotatingFileHandler', 'level': 'DEBUG', 'formatter': 'simple', - 'filename': os.path.join(project_path, 'logs', 'madeira.log'), + 'filename': os.path.join(PROJECT_PATH, 'logs', 'madeira.log'), 'mode': 'a', 'maxBytes': 100 * 1024, 'backupCount': 10,