diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-14 18:25:28 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-14 18:25:28 -0500 |
commit | 3e5823d0985a54dec37f103dc72fda604d12a948 (patch) | |
tree | 251c6f9f53522bf92991783a1f69ac350a6e9cd8 /libbe/ui | |
parent | d8a698ffff676ef4a222d2dbeb5fe304901521a0 (diff) | |
download | bugseverywhere-3e5823d0985a54dec37f103dc72fda604d12a948.tar.gz |
Transitioned import_xml to Command-format
Diffstat (limited to 'libbe/ui')
-rwxr-xr-x | libbe/ui/command_line.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/ui/command_line.py b/libbe/ui/command_line.py index 4042123..feeccd4 100755 --- a/libbe/ui/command_line.py +++ b/libbe/ui/command_line.py @@ -222,7 +222,7 @@ class BE (libbe.command.Command): cmdlist = [] for name in libbe.command.commands(): module = libbe.command.get_command(name) - Class = getattr(module, name.capitalize()) + Class = libbe.command.get_command_class(module, name) cmdlist.append((name, Class.__doc__.splitlines()[0])) cmdlist.sort() longest_cmd_len = max([len(name) for name,desc in cmdlist]) |