For now, revert r2093-2095, which were committed by accident; I'm not
authorEvan Broder <broder@mit.edu>
Thu, 5 Feb 2009 08:24:56 +0000 (03:24 -0500)
committerEvan Broder <broder@mit.edu>
Thu, 5 Feb 2009 08:24:56 +0000 (03:24 -0500)
comfortable with them sitting on HEAD when I don't have time to test
them.

svn path=/trunk/packages/invirt-base/; revision=2097

debian/changelog
python/invirt/common.py
python/invirt/remctl.py

index 2d643b8..6210c79 100644 (file)
@@ -1,9 +1,3 @@
-invirt-base (0.0.21) unstable; urgency=low
-
-  * Get rid of confusing err=True option to invirt.remctl.remctl
-
- -- Evan Broder <broder@mit.edu>  Fri, 30 Jan 2009 19:49:46 -0500
-
 invirt-base (0.0.20) unstable; urgency=low
 
   * depend on remctl-client
index eb2e90e..a85d955 100644 (file)
@@ -75,9 +75,7 @@ class InvalidInput(Exception):
 
 class CodeError(Exception):
     """Exception for internal errors or bad faith input."""
-    def __init__(self, message, code=None):
-        Exception.__init__(self, message)
-        self.code = code
+    pass
 
 #
 # Tests.
index a97e422..d530d7a 100644 (file)
@@ -36,6 +36,10 @@ def remctl(host, *args, **kws):
                          stdout=subprocess.PIPE,
                          stderr=subprocess.PIPE)
     v = p.wait()
+    if kws.get('err'):
+        return p.stdout.read(), p.stderr.read()
     if v:
-        raise CodeError('ERROR on remctl %s:\n%s' % (args, p.stderr.read()), v)
+        print >> sys.stderr, 'Error', v, 'on remctl', args, ':'
+        print >> sys.stderr, p.stderr.read()
+        raise CodeError('ERROR on remctl')
     return p.stdout.read()