diff --git a/qubesmgmt/tools/__init__.py b/qubesmgmt/tools/__init__.py index 5277551..31c013b 100644 --- a/qubesmgmt/tools/__init__.py +++ b/qubesmgmt/tools/__init__.py @@ -473,7 +473,7 @@ def get_parser_for_command(command): ''' module = importlib.import_module( - '.' + command.replace('-', '_'), 'qubes.tools') + '.' + command.replace('-', '_'), 'qubesmgmt.tools') try: parser = module.parser