From 8e8444d8f20433fefe8aea0a518bcdc55ba7f036 Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Sat, 27 Feb 2010 16:59:00 -0500 Subject: [PATCH] Comment out intermediate print. --- pyfpdb/XTables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/XTables.py b/pyfpdb/XTables.py index 28737002..29a9b1d9 100644 --- a/pyfpdb/XTables.py +++ b/pyfpdb/XTables.py @@ -68,7 +68,7 @@ class Table(Table_Window): window_number = None for listing in os.popen('xwininfo -root -tree').readlines(): if re.search(search_string, listing): - print listing +# print listing mo = re.match('\s+([\dxabcdef]+) (.+):\s\(\"([a-zA-Z.]+)\".+ (\d+)x(\d+)\+\d+\+\d+ \+(\d+)\+(\d+)', listing) self.number = int( mo.group(1), 0) self.width = int( mo.group(4) )