summaryrefslogtreecommitdiff
path: root/gr-blocks/python/blocks/qa_ctrlport_probes.py
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2015-03-03 17:00:48 -0500
committerTom Rondeau <tom@trondeau.com>2015-04-02 15:38:57 -0700
commit075dc8166f7c7462fe5ac830cdccd90df5496a50 (patch)
tree7aee210b683a47e1c383f8c80b03267fe10bf4b3 /gr-blocks/python/blocks/qa_ctrlport_probes.py
parent3da7369d88f67258d1ed69069521a2620657b875 (diff)
controlport: more cleaning up.
Diffstat (limited to 'gr-blocks/python/blocks/qa_ctrlport_probes.py')
-rw-r--r--gr-blocks/python/blocks/qa_ctrlport_probes.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/gr-blocks/python/blocks/qa_ctrlport_probes.py b/gr-blocks/python/blocks/qa_ctrlport_probes.py
index cb428d6dda..6bdad7ec3b 100644
--- a/gr-blocks/python/blocks/qa_ctrlport_probes.py
+++ b/gr-blocks/python/blocks/qa_ctrlport_probes.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2013 Free Software Foundation, Inc.
+# Copyright 2013,2015 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -24,14 +24,13 @@ import sys, time, random, numpy
from gnuradio import gr, gr_unittest, blocks
import os, struct
-#from gnuradio import ctrlport
from gnuradio.ctrlport.GNURadioControlPortClient import GNURadioControlPortClient
class test_ctrlport_probes(gr_unittest.TestCase):
def setUp(self):
- self.tb = gr.top_block()
os.environ['GR_CONF_CONTROLPORT_ON'] = 'True'
+ self.tb = gr.top_block()
def tearDown(self):
self.tb = None