From c8843f3568d3bf8f1fab177fdd33742385e8504a Mon Sep 17 00:00:00 2001 From: Eric Price Date: Wed, 10 Oct 2007 03:50:45 -0400 Subject: [PATCH] Bug fix. svn path=/trunk/web/; revision=180 --- templates/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/main.py b/templates/main.py index 5e1a272..6f99990 100755 --- a/templates/main.py +++ b/templates/main.py @@ -176,7 +176,7 @@ def remctl(*args, **kws): p.wait() return p.stdout.read(), p.stderr.read() if p.wait(): - print >> sys.stderr, 'Error on remctl %s:' % args + print >> sys.stderr, 'Error on remctl', args, ':' print >> sys.stderr, p.stderr.read() raise CodeError('ERROR on remctl') return p.stdout.read() -- 1.7.9.5