diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-04-19 19:04:17 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:46 -0800 |
commit | f9a6de45be2b5a296e93d4eb06e6a934b154108e (patch) | |
tree | d2106f6f79cf7aee1a763bbbe8af4e0cea317ee6 /mpm | |
parent | 36365930a6035e18dc3ec07d401d73e7730af8cf (diff) | |
download | uhd-f9a6de45be2b5a296e93d4eb06e6a934b154108e.tar.gz uhd-f9a6de45be2b5a296e93d4eb06e6a934b154108e.tar.bz2 uhd-f9a6de45be2b5a296e93d4eb06e6a934b154108e.zip |
mpm: Removed exception handling for periph manager import
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/__init__.py.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/__init__.py.in b/mpm/python/usrp_mpm/periph_manager/__init__.py.in index d8733ba17..c2dd7927c 100644 --- a/mpm/python/usrp_mpm/periph_manager/__init__.py.in +++ b/mpm/python/usrp_mpm/periph_manager/__init__.py.in @@ -23,7 +23,4 @@ from .. import libpyusrp_periphs as lib from .. import dboard_manager from .. import types -try: - from .${MPM_DEVICE} import ${MPM_DEVICE} as periph_manager -except ImportError: - raise Exception("Could not import ${MPM_DEVICE}") +from .${MPM_DEVICE} import ${MPM_DEVICE} as periph_manager |