Skip to content

Commit

Permalink
Merge pull request #783 from pilou-/fix_super_usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ovirt-infra authored May 6, 2019
2 parents 63eb1f8 + 8a96407 commit 74757f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lago/log_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def __init__(self, name, *args, **kwargs):
self.force_show = False
self.name = name
self.start_time = datetime.datetime.now()
super(deque, self).__init__(*args, **kwargs)
super(Task, self).__init__(*args, **kwargs)

def __str__(self):
return (
Expand Down

0 comments on commit 74757f0

Please sign in to comment.