From 2155c125870ec558371e3ff843465c11592dd511 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 22 Nov 2008 17:28:12 -0500 Subject: [PATCH] Fixed error detecting FTP tables on NT --- pyfpdb/Tables.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/Tables.py b/pyfpdb/Tables.py index 2b312f40..9f5360e2 100755 --- a/pyfpdb/Tables.py +++ b/pyfpdb/Tables.py @@ -229,6 +229,7 @@ def discover_nt_by_name(c, tablename): if titles[hwnd].find(tablename) == -1: continue if titles[hwnd].find("History for table:") > -1: continue if titles[hwnd].find("HUD:") > -1: continue + if titles[hwnd].find("Chat:") > -1: continue return decode_windows(c, titles[hwnd], hwnd) return False @@ -428,7 +429,7 @@ def discover_mac_by_name(c, tablename): if __name__=="__main__": c = Configuration.Config() - print discover_table_by_name(c, "Ostara V") + print discover_table_by_name(c, "Howard Lederer") print discover_tournament_table(c, "118942908", "3") tables = discover(c)