summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python/apps
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-examples/python/apps')
-rwxr-xr-xgnuradio-examples/python/apps/hf_explorer/hfx2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-examples/python/apps/hf_explorer/hfx2.py b/gnuradio-examples/python/apps/hf_explorer/hfx2.py
index 00b1eddfd..00a3b9047 100755
--- a/gnuradio-examples/python/apps/hf_explorer/hfx2.py
+++ b/gnuradio-examples/python/apps/hf_explorer/hfx2.py
@@ -118,9 +118,9 @@ def pick_subdevice(u):
If there's a daughterboard on B, select B.
Otherwise, select A.
"""
- if u.db[0][0].dbid() >= 0: # dbid is < 0 if there's no d'board or a problem
+ if u.db(0, 0).dbid() >= 0: # dbid is < 0 if there's no d'board or a problem
return (0, 0)
- if u.db[1][0].dbid() >= 0:
+ if u.db(1, 0).dbid() >= 0:
return (1, 0)
return (0, 0)