Skip to content

Commit

Permalink
Merge pull request kliment#814 from jayproulx/master
Browse files Browse the repository at this point in the history
kliment#813 Mute ok and wait messages, needs code review and context
  • Loading branch information
kliment authored Apr 25, 2017
2 parents acab296 + d33bd72 commit 27584de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printrun/pronsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -1265,7 +1265,7 @@ def recvcb(self, l):
report_type = self.recvcb_report(l)
if report_type & REPORT_TEMP:
self.status.update_tempreading(l)
if l != "ok" and not self.sdlisting \
if l[:2] != "ok" and l != "wait" and not self.sdlisting \
and not self.monitoring and (report_type == REPORT_NONE or report_type & REPORT_MANUAL):
if l[:5] == "echo:":
l = l[5:].lstrip()
Expand Down

0 comments on commit 27584de

Please sign in to comment.