From dd80468f5f969dc1a39be714006612748922628b Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 9 Jun 2009 14:18:56 -0400 Subject: [PATCH] Fix a whitespace problem. --- pyfpdb/WinTables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/WinTables.py b/pyfpdb/WinTables.py index 1b064eef..87431dda 100644 --- a/pyfpdb/WinTables.py +++ b/pyfpdb/WinTables.py @@ -62,7 +62,7 @@ class Table(Table_Window): return None (x, y, width, height) = win32gui.GetWindowRect(hwnd) - print "x = %s y = %s width = %s height = %s" % (x, y, width, height) + print "x = %s y = %s width = %s height = %s" % (x, y, width, height) self.x = int(x) + b_width self.y = int(y) + tb_height self.height = int(height) - b_width - tb_height