Skip to content

Commit

Permalink
Fixed bug in pygtail instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
ilcardella committed Aug 3, 2020
1 parent 99bb698 commit e874415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tradingmate/ui/gtk/log_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _on_text_view_changed(self, widget, event):
self._window.resize(h_adj.get_upper(), self._window.get_size()[1])

def _tail_lines(self, filepath):
tail = Pygtail(filepath)
tail = Pygtail(str(filepath))
while True:
try:
self._tail_worker_enabled.wait()
Expand Down

0 comments on commit e874415

Please sign in to comment.