From: W. Trevor King Date: Fri, 14 Nov 2008 05:24:08 +0000 (-0500) Subject: Replaced libbe.arch.invoke() with general rcs.invoke() X-Git-Tag: 1.0.0~169 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=41c369fafb6b775c50ba1d50efc57c024449b97c;p=be.git Replaced libbe.arch.invoke() with general rcs.invoke() --- diff --git a/libbe/arch.py b/libbe/arch.py index 038325a..001f852 100644 --- a/libbe/arch.py +++ b/libbe/arch.py @@ -14,28 +14,17 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -from subprocess import Popen, PIPE import os import config import errno + +from rcs import invoke + client = config.get_val("arch_client") if client is None: client = "tla" config.set_val("arch_client", client) -def invoke(args): - try : - q = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE) - except OSError, e : - strerror = "%s\nwhile executing %s" % (e.args[1], args) - raise Exception("Command failed: %s" % strerror) - output = q.stdout.read() - error = q.stderr.read() - status = q.wait() - if status >= 0: - return status, output, error - raise Exception("Command failed: %s" % error) - def invoke_client(*args, **kwargs): cl_args = [client]