Skip to content

Commit

Permalink
exc: fix QubesNoTemplateError
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed Jun 19, 2017
1 parent aadbe22 commit 4a1a5fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubes/exc.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(self, vm, msg=None):
class QubesNoTemplateError(QubesVMError):
'''Cannot start domain, because there is no template'''
def __init__(self, vm, msg=None):
super(QubesNoTemplateError, self).__init__(
super(QubesNoTemplateError, self).__init__(vm,
msg or 'Template for the domain {!r} not found'.format(vm.name))


Expand Down

0 comments on commit 4a1a5fc

Please sign in to comment.