From d3439694c88d66bb4d5bfb23fc2bbc7131f9e502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Thu, 11 May 2017 19:33:32 +0200 Subject: [PATCH] tools: fix get_parser_for_command --- qubesmgmt/tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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