Skip to content

Commit

Permalink
Split newlines from dune output
Browse files Browse the repository at this point in the history
  • Loading branch information
whonore committed Jun 24, 2024
1 parent 03d49e7 commit 259aff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/coqtail.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ def set_goal(

def add_info_callback(self, msg: str) -> None:
"""Callback for appending to the info panel and refreshing it."""
self.set_info([msg], reset=False)
self.set_info(msg.split("\n"), reset=False)
self.handler.refresh(goals=False, force=True, scroll=True)

def set_info(
Expand Down

0 comments on commit 259aff9

Please sign in to comment.