Skip to content

Commit

Permalink
Bear: Use concatenation from LogPrinter
Browse files Browse the repository at this point in the history
  • Loading branch information
sils committed Apr 15, 2015
1 parent 3b505b4 commit 530ad31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coalib/bears/Bear.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def __send_msg(self, log_level, delimiter, *args):
return

self.message_queue.put(LogMessage(log_level,
str(delimiter).join(args)),
*args,
delimiter=delimiter),
timeout=self.TIMEOUT)

def run(self, *args, dependency_results=None, **kwargs):
Expand Down

0 comments on commit 530ad31

Please sign in to comment.