From 1641ee9dda1498926c45ca03b0905796f768a2f3 Mon Sep 17 00:00:00 2001 From: Tim Bird Date: Sat, 8 Feb 2020 10:17:58 -0700 Subject: [PATCH] Reword some pattern-related messages Try to keep all verbose startup messages in the same tense. Messages should be phrased to start with an implicit "Program is ..." prefix. --- grabserial | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grabserial b/grabserial index b2cc08a..70e9726 100755 --- a/grabserial +++ b/grabserial @@ -451,9 +451,9 @@ def grab(arglist, outputfd=sys.stdout): if show_systime: vprint("Printing absolute timing information for each line") if basepat: - vprint("Matching pattern '%s' to set base time" % basepat) + vprint("Using pattern '%s' to set base time" % basepat) if inlinepat: - vprint("Inline pattern '%s' to report time of at end of run" + vprint("Using inline pattern '%s' to report time of at end of run" % inlinepat) if quitpat and not restart: vprint("Using pattern '%s' to exit program" % quitpat)