From eaeb52c7975204898508f83259135c99eefb619f Mon Sep 17 00:00:00 2001 From: Terence Simpson Date: Sat, 10 May 2008 17:01:24 +0100 Subject: [PATCH] make !find case sensitive as apt-file is --- Encyclopedia/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Encyclopedia/plugin.py b/Encyclopedia/plugin.py index 7e2330a..37f1a27 100644 --- a/Encyclopedia/plugin.py +++ b/Encyclopedia/plugin.py @@ -363,7 +363,7 @@ class Encyclopedia(callbacks.Plugin): if text.startswith('info '): ret = self.Apt.info(text[5:].strip(),self.registryValue('searchorder', channel).split()) elif text.startswith('find '): - ret = self.Apt.find(text[5:].strip(),self.registryValue('searchorder', channel).split()) + ret = self.Apt.find(orig_text[5:].strip(),self.registryValue('searchorder', channel).split()) #else: # ret = self.Apt.info(text.strip(),self.registryValue('searchorder', channel).split()) # if ret.startswith('Package'):