Ignore:
Timestamp:
Feb 5, 2009, 3:24:56 AM (15 years ago)
Author:
broder
Message:

For now, revert r2093-2095, which were committed by accident; I'm not
comfortable with them sitting on HEAD when I don't have time to test
them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-base/python/invirt/remctl.py

    r2095 r2097  
    3737                         stderr=subprocess.PIPE)
    3838    v = p.wait()
     39    if kws.get('err'):
     40        return p.stdout.read(), p.stderr.read()
    3941    if v:
    40         raise CodeError('ERROR on remctl %s:\n%s' % (args, p.stderr.read()), v)
     42        print >> sys.stderr, 'Error', v, 'on remctl', args, ':'
     43        print >> sys.stderr, p.stderr.read()
     44        raise CodeError('ERROR on remctl')
    4145    return p.stdout.read()
Note: See TracChangeset for help on using the changeset viewer.