From: Johnathan Corgan Date: Tue, 3 Nov 2009 15:11:45 +0000 (-0800) Subject: gr-wxgui: cleanup for merge X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=392b7f9002cb08dddc1ca0ced18f899a0958ba1f;p=debian%2Fgnuradio gr-wxgui: cleanup for merge --- diff --git a/gr-wxgui/src/python/Makefile.am b/gr-wxgui/src/python/Makefile.am index dfa156f6..2382d599 100644 --- a/gr-wxgui/src/python/Makefile.am +++ b/gr-wxgui/src/python/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2004,2005,2008 Free Software Foundation, Inc. +# Copyright 2004,2005,2008,2009 Free Software Foundation, Inc. # # This file is part of GNU Radio # diff --git a/gr-wxgui/src/python/termsink.py b/gr-wxgui/src/python/termsink.py index 45a94e39..a0cfd575 100644 --- a/gr-wxgui/src/python/termsink.py +++ b/gr-wxgui/src/python/termsink.py @@ -66,7 +66,6 @@ class termsink(wx.Panel): # This gets called in the queue runner thread context # For now, just add whatever the user sends to the text control text = msg.to_string() - print "handle_msg: received", len(text), "bytes" # Create a wxPython event and post it to the event queue evt = AppendEvent(text) @@ -75,5 +74,4 @@ class termsink(wx.Panel): def evt_append(self, evt): # This gets called by the wxPython event queue runner - print "appending", len(evt.text), "bytes" self.text_ctrl.AppendText(evt.text)