Changeset 2097 for trunk/packages/invirt-base
- Timestamp:
- Feb 5, 2009, 3:24:56 AM (16 years ago)
- Location:
- trunk/packages/invirt-base
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-base/debian/changelog
r2095 r2097 1 invirt-base (0.0.21) unstable; urgency=low2 3 * Get rid of confusing err=True option to invirt.remctl.remctl4 5 -- Evan Broder <broder@mit.edu> Fri, 30 Jan 2009 19:49:46 -05006 7 1 invirt-base (0.0.20) unstable; urgency=low 8 2 -
trunk/packages/invirt-base/python/invirt/common.py
r2095 r2097 76 76 class CodeError(Exception): 77 77 """Exception for internal errors or bad faith input.""" 78 def __init__(self, message, code=None): 79 Exception.__init__(self, message) 80 self.code = code 78 pass 81 79 82 80 # -
trunk/packages/invirt-base/python/invirt/remctl.py
r2095 r2097 37 37 stderr=subprocess.PIPE) 38 38 v = p.wait() 39 if kws.get('err'): 40 return p.stdout.read(), p.stderr.read() 39 41 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') 41 45 return p.stdout.read()
Note: See TracChangeset
for help on using the changeset viewer.