diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-11-07 15:20:40 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-08 08:56:20 -0800 |
commit | 21ed72b5a219c7d3d4cc87afa61410aff56f30a7 (patch) | |
tree | ad6a617d1376fd75a0d4874d2b89cbc6499b926b /host/tests/devtest/usrp_probe.py | |
parent | d2102d5999abb383a434e12403843b30f02583f4 (diff) | |
download | uhd-21ed72b5a219c7d3d4cc87afa61410aff56f30a7.tar.gz uhd-21ed72b5a219c7d3d4cc87afa61410aff56f30a7.tar.bz2 uhd-21ed72b5a219c7d3d4cc87afa61410aff56f30a7.zip |
devtese: Change default Python interpreter to 3
Usually, devtest is run via make (or ninja), and will use the correct
Python interpreter. When running directly on the command line, it is
important to pick the right Python interpreter so it will work with the
Python API.
Here, we change the default interpreter from Python 2 to 3, because
that's the more common version, and will be the only option for upcoming
UHD 4.0 anyway.
Diffstat (limited to 'host/tests/devtest/usrp_probe.py')
-rw-r--r-- | host/tests/devtest/usrp_probe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/devtest/usrp_probe.py b/host/tests/devtest/usrp_probe.py index c7b73288e..6e1f32cef 100644 --- a/host/tests/devtest/usrp_probe.py +++ b/host/tests/devtest/usrp_probe.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright 2015-2016 Ettus Research LLC # Copyright 2018 Ettus Research, a National Instruments Company |