summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-07-14 14:44:42 -0700
committerMartin Braun <martin.braun@ettus.com>2018-07-14 14:44:42 -0700
commite1fa3db39fcf38f1fefed4b3f6cc5f7b8d788933 (patch)
treef1dea4b9faf8e93b0d4e5d732de1d2b09b18d508 /gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py
parent89736b31397330861dcaa550b7891ce6e7a5536f (diff)
ctrlport: Remove superfluous 'import exceptions'
It's not needed, not even with Python 2.7. It will fail with Python 3, though.
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py')
-rw-r--r--gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py b/gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py
index beec500023..8b811ab9d9 100644
--- a/gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py
+++ b/gnuradio-runtime/python/gnuradio/ctrlport/GNURadioControlPortClient.py
@@ -30,8 +30,6 @@ is currently the only supported transport.
from __future__ import print_function
from __future__ import unicode_literals
-import exceptions
-
"""
GNURadioControlPortClient is the main class for creating a GNU Radio
ControlPort client application for all transports.
@@ -131,4 +129,4 @@ class GNURadioControlPortClient(object):
blockingcallback()
else:
print(("Unsupported RPC method: ", rpcmethod))
- raise exceptions.ValueError()
+ raise ValueError()