Skip to content

Commit

Permalink
tools: fix get_parser_for_command
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed May 11, 2017
1 parent 70e04ed commit d343969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesmgmt/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d343969

Please sign in to comment.