From 790e26ff1dda1d8b630028d335dbea315e1f492c Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Fri, 12 Nov 2010 11:02:21 -0500 Subject: [PATCH] Fix for UC table names on Windows. --- pyfpdb/WinTables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/WinTables.py b/pyfpdb/WinTables.py index f6ddd93b..b7114ae3 100644 --- a/pyfpdb/WinTables.py +++ b/pyfpdb/WinTables.py @@ -59,7 +59,7 @@ class Table(Table_Window): for hwnd in titles: if titles[hwnd] == "": continue - if re.search(self.search_string, titles[hwnd]): + if re.search(self.search_string, titles[hwnd], re.I): if self.check_bad_words(titles[hwnd]): continue self.window = hwnd