From 58ccf0327c13e2a0e6ec5c19fd3b246c67c4e8d6 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 27 Jan 2009 14:13:54 -0500 Subject: [PATCH] Complete prev commit by deleting intermed output. --- pyfpdb/HUD_main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyfpdb/HUD_main.py b/pyfpdb/HUD_main.py index 7b934d0a..af7e4e9f 100755 --- a/pyfpdb/HUD_main.py +++ b/pyfpdb/HUD_main.py @@ -117,7 +117,6 @@ def read_stdin(): # This is the thread function while True: # wait for a new hand number on stdin new_hand_id = sys.stdin.readline() new_hand_id = string.rstrip(new_hand_id) - print "new hand = ", new_hand_id if new_hand_id == "": # blank line means quit destroy() break # this thread is not always killed immediately with gtk.main_quit()