From 6832234cfb1b1ec1677b0f90663b94ed5ace4644 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 9 Oct 2008 10:03:04 -0400 Subject: [PATCH] get rid of some useless intermediate output --- pyfpdb/HUD_main.py | 2 -- 1 file changed, 2 deletions(-) mode change 100644 => 100755 pyfpdb/HUD_main.py diff --git a/pyfpdb/HUD_main.py b/pyfpdb/HUD_main.py old mode 100644 new mode 100755 index 33bdc890..1d3fc299 --- a/pyfpdb/HUD_main.py +++ b/pyfpdb/HUD_main.py @@ -94,14 +94,12 @@ def check_stdin(db_name): process_new_hand(hand_no, db_name) except: pass - return True def read_stdin(source, condition, db_name): new_hand_id = sys.stdin.readline() if new_hand_id == "": destroy() - print "new_hand_id = ", new_hand_id process_new_hand(new_hand_id, db_name) return True