home · contact · privacy
Make quote search case-insensitive.
[plomlombot-irc.git] / plomsearch.py
index 54eacbb83adfe1df1ed3e2c4d14d30dd07035828..fc5665fa24bfc3c402a2eea11cbcfd4839ad780d 100644 (file)
@@ -204,7 +204,7 @@ def search(query, string_list):
 
     def testStringMatchLogic(statement, compare_value):
         if type(statement) == str:
-            statement_true = statement in compare_value 
+            statement_true = statement.lower() in compare_value.lower()
         elif type(statement) == CompoundStatement:
             or_list_true = False
             if len(statement.or_list) > 1: