From c8cafb6f45eed9e1341bf763228074f80a1dc8fc Mon Sep 17 00:00:00 2001 From: James Vega Date: Tue, 19 Aug 2003 14:47:59 +0000 Subject: [PATCH] Fixed the problem where 'load Unix' would never be appended to onStart --- plugins/Unix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Unix.py b/plugins/Unix.py index 2921c3150..69156a772 100644 --- a/plugins/Unix.py +++ b/plugins/Unix.py @@ -56,6 +56,7 @@ import utils def configure(onStart, afterConnect, advanced): from questions import expect, anything, something, yn + onStart.append('load Unix') cmdLine = utils.findBinaryInPath('aspell') if not cmdLine: cmdLine = utils.findBinaryInPath('ispell')