Skip to content

Commit

Permalink
Fixed python 2 invalid super call
Browse files Browse the repository at this point in the history
  • Loading branch information
cclloyd committed Jul 28, 2020
1 parent bfb8f29 commit 369a3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coloredlogs/__init__.py
Expand Up @@ -1114,7 +1114,7 @@ def format(self, record):
copy.msg = ansi_wrap(coerce_string(line), **style)
record = copy
# Delegate the remaining formatting to the base formatter.
output += super().format(record) + "\n"
output += logging.Formatter.format(self, record) + "\n"
return output[:-1]


Expand Down

0 comments on commit 369a3b5

Please sign in to comment.