diff options
author | Martin Braun <martin.braun@kit.edu> | 2013-01-28 15:26:05 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@kit.edu> | 2013-01-28 15:26:05 +0100 |
commit | 2d695b3c4c86b5c206f95dcc1d71f97d808d98b8 (patch) | |
tree | cf52a650d74ada32663cc9bc04ee5e64bd1e0f83 /gr-utils/src/python/modtool/modtool_help.py | |
parent | ede34060de27184eb6f6df6b5fd03ae8a643bf91 (diff) |
modtool: cleanup, bugfixes
Diffstat (limited to 'gr-utils/src/python/modtool/modtool_help.py')
-rw-r--r-- | gr-utils/src/python/modtool/modtool_help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/src/python/modtool/modtool_help.py b/gr-utils/src/python/modtool/modtool_help.py index 79474a9631..76d9fd28bd 100644 --- a/gr-utils/src/python/modtool/modtool_help.py +++ b/gr-utils/src/python/modtool/modtool_help.py @@ -21,7 +21,7 @@ """ The help module """ from gnuradio.modtool import * -from util_functions import get_command_from_argv, get_class_dict +from util_functions import get_command_from_argv from templates import Templates @@ -51,7 +51,7 @@ class ModToolHelp(ModTool): pass def run(self): - cmd_dict = get_class_dict() + cmd_dict = get_class_dict(globals().values()) cmds = cmd_dict.keys() cmds.remove(self.name) for a in self.aliases: |