summaryrefslogtreecommitdiff
path: root/gr-wxgui/src
diff options
context:
space:
mode:
authorJohnathan Corgan2009-11-03 07:11:45 -0800
committerJohnathan Corgan2009-11-03 07:11:45 -0800
commit392b7f9002cb08dddc1ca0ced18f899a0958ba1f (patch)
tree335cbbfc3263debad62c4a6fec33d53e74fc51ec /gr-wxgui/src
parent6f0685769f7a7728a779502435cd2dd17b8d65e2 (diff)
downloadgnuradio-392b7f9002cb08dddc1ca0ced18f899a0958ba1f.tar.gz
gnuradio-392b7f9002cb08dddc1ca0ced18f899a0958ba1f.tar.bz2
gnuradio-392b7f9002cb08dddc1ca0ced18f899a0958ba1f.zip
gr-wxgui: cleanup for merge
Diffstat (limited to 'gr-wxgui/src')
-rw-r--r--gr-wxgui/src/python/Makefile.am2
-rw-r--r--gr-wxgui/src/python/termsink.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/gr-wxgui/src/python/Makefile.am b/gr-wxgui/src/python/Makefile.am
index dfa156f62..2382d599c 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 45a94e396..a0cfd575d 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)