Skip to content

Commit

Permalink
Fixed missing [ in reporter print
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed Oct 4, 2023
1 parent f320d59 commit 5017355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coercer/core/Reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ def print_testing(self, msprotocol_rpc_instance):
sys.stdout.flush()

def print_info(self, message):
print("\x1b[1;92minfo\x1b[0m\x1b[1m]\x1b[0m %s" % message)
print("\x1b[1m[\x1b[92minfo\x1b[0m\x1b[1m]\x1b[0m %s" % message)
sys.stdout.flush()

def print_warn(self, message):
print("\x1b[1;91mwarn\x1b[0m\x1b[1m]\x1b[0m %s" % message)
print("\x1b[1m[\x1b[91mwarn\x1b[0m\x1b[1m]\x1b[0m %s" % message)
sys.stdout.flush()

def print_verbose(self, message):
Expand Down

0 comments on commit 5017355

Please sign in to comment.