assertion: fixed name shown in the log
Previosly it incorrectly shows 'exec' instead of 'assertion' in the logs. Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
parent
e052fd14a1
commit
a50d5e0237
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class assertion(base.Function):
|
|||
"""
|
||||
def __init__(self):
|
||||
# 2 arguments
|
||||
super(self.__class__, self).__init__("exec", 3)
|
||||
super(self.__class__, self).__init__("assertion", 3)
|
||||
|
||||
def execute(self, args):
|
||||
if not super(self.__class__, self).execute(args):
|
||||
|
|
|
|||
Loading…
Reference in a new issue