# HG changeset patch # User Brian Neal # Date 1322611883 0 # Node ID 21172e9be136b1710a4c4cb98927b789162de77b # Parent 90326059349176a91a3e1e73da7c0c3f940a638a Fix typo in production.py where it was using old project_path variable instead of PROJECT_PATH. diff -r 903260593491 -r 21172e9be136 mysite/settings/production.py --- 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,