From 21efa751304df85b40bef8843331069410823c22 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 16 Sep 2004 20:54:28 +0000 Subject: [PATCH] Bah, my boss agreed with Grantbow...I hate when I'm wrong. --- plugins/Unix.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Unix.py b/plugins/Unix.py index f67d2cf62..ab123ae40 100644 --- a/plugins/Unix.py +++ b/plugins/Unix.py @@ -155,7 +155,8 @@ class Unix(callbacks.Privmsg): Returns the current pid of the process for this Supybot. """ - irc.reply(str(os.getpid())) + irc.reply(str(os.getpid()), private=True) + pid = privmsgs.checkCapability(pid, 'owner') _cryptre = re.compile(r'[./0-9A-Za-z]') def crypt(self, irc, msg, args):