From: Eric Price Date: Wed, 10 Oct 2007 07:50:45 +0000 (-0400) Subject: Bug fix. X-Git-Tag: sipb-xen-www/1~61 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/c8843f3568d3bf8f1fab177fdd33742385e8504a?ds=inline Bug fix. svn path=/trunk/web/; revision=180 --- 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()