[Supervisor-checkins] r840 - supervisor/trunk/src/supervisor
Chris McDonough
chrism at agendaless.com
Fri Apr 17 14:18:29 EDT 2009
Author: Chris McDonough <chrism at agendaless.com>
Date: Fri Apr 17 14:18:29 2009
New Revision: 840
Log:
Merge patch from David E. Kindred for bug #268.
Modified:
supervisor/trunk/src/supervisor/options.py
Modified: supervisor/trunk/src/supervisor/options.py
==============================================================================
--- supervisor/trunk/src/supervisor/options.py (original)
+++ supervisor/trunk/src/supervisor/options.py Fri Apr 17 14:18:29 2009
@@ -751,9 +751,10 @@
for k in ('stdout', 'stderr'):
n = '%s_logfile' % k
- lf_val = logfile_name(get(section, n, Automatic))
+ lf_val = get(section, n, Automatic)
if isinstance(lf_val, basestring):
lf_val = expand(lf_val, expansions, n)
+ lf_val = logfile_name(lf_val)
logfiles[n] = lf_val
bu_key = '%s_logfile_backups' % k
More information about the Supervisor-checkins
mailing list