From 66bed96a8b99a8c0150768c2150a0310059c4a83 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 21 Feb 2007 04:37:32 +0000 Subject: Raise a CommandNotFound exception when necessary, to ease troubleshooting. Thanks to marienz for reporting. (trunk r6020:6021) svn path=/main/branches/2.1.2/; revision=6022 --- pym/portage_exec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage_exec.py b/pym/portage_exec.py index 252fed2a0..800535f55 100644 --- a/pym/portage_exec.py +++ b/pym/portage_exec.py @@ -9,7 +9,7 @@ import portage_data from portage_util import dump_traceback from portage_const import BASH_BINARY, SANDBOX_BINARY - +from portage_exception import CommandNotFound try: import resource @@ -157,7 +157,7 @@ def spawn(mycommand, env={}, opt_name=None, fd_pipes=None, returnpid=False, or not os.access(binary, os.X_OK)): binary = path_lookup and find_binary(binary) or None if not binary: - return -1 + raise CommandNotFound(mycommand[0]) # If we haven't been told what file descriptors to use # default to propogating our stdin, stdout and stderr. -- cgit v1.2.3-1-g7c22