Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lnt/lnttool/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def action_create_config():
sys.stderr.write("Created '%s'\n" % _default_config_filename)


class AdminCLI(click.MultiCommand):
class AdminCLI(click.Group):
'''Admin subcommands. Put into this class so we can lazily import
dependencies.'''
_commands = [
Expand Down
2 changes: 1 addition & 1 deletion lnt/lnttool/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _print_result_url(results, verbose):
print("Results available at: no URL available")


class RunTestCLI(click.MultiCommand):
class RunTestCLI(click.Group):
def list_commands(self, ctx):
import lnt.tests
return lnt.tests.get_names()
Expand Down
Loading