From e8e9a9dca30904867fc88300f77215fe8497c66c Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Fri, 20 Jun 2008 11:03:16 +0100 Subject: [PATCH] we have no business inserting 'bin' into paths. Fixes LP #241563 --- terminator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator b/terminator index d777bebd..929d2351 100755 --- a/terminator +++ b/terminator @@ -395,7 +395,7 @@ text/plain if not os.path.exists (shell): for i in ['bash','zsh','tcsh','ksh','csh','sh']: for p in paths: - shell = os.path.join(p, 'bin', i) + shell = os.path.join(p, i) dbg ('spawn_child: Checking if "%s" exists'%shell) if not os.path.exists (shell): continue