tools: fix get_parser_for_command

This commit is contained in:
Marek Marczykowski-Górecki 2017-05-11 19:33:32 +02:00
parent 70e04eddf8
commit d3439694c8
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -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