summaryrefslogtreecommitdiff
path: root/gr-utils/python
diff options
context:
space:
mode:
authorChris Donohue <christopher.donohue@gmail.com>2020-02-05 10:37:41 -0500
committerMichael Dickens <michael.dickens@ettus.com>2020-02-07 10:39:39 -0500
commitec760477e8a8de90894e54ce1469889da844a80a (patch)
tree2ffe5ecfccfbd18f12a24c73eae540dc4c46ac87 /gr-utils/python
parent90c8e30e87c935176224728d2a28709cb6a7adab (diff)
modtool: Display import errors
Diffstat (limited to 'gr-utils/python')
-rw-r--r--gr-utils/python/modtool/cli/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-utils/python/modtool/cli/base.py b/gr-utils/python/modtool/cli/base.py
index 41243d191d..2462a71d88 100644
--- a/gr-utils/python/modtool/cli/base.py
+++ b/gr-utils/python/modtool/cli/base.py
@@ -63,6 +63,7 @@ class CommandCLI(click.Group):
try:
mod = import_module('gnuradio.modtool.cli.' + cmd_name)
except ImportError:
+ logging.error(ImportError)
return self.commands.get(cmd_name)
return mod.cli