From 23eeb33b3da43a679c3bf3f3643cfa552a1164e1 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 13 Sep 2021 18:36:19 -0700 Subject: [PATCH] modify stream_error message --- jc/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/utils.py b/jc/utils.py index 700b09e0..06e5af10 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -176,7 +176,7 @@ def convert_to_bool(value): def stream_error(e, quiet, line): """reraise the stream exception with annotation or print an error _meta field if quiet=True""" if not quiet: - e.args = (str(e) + '... Use the quiet option (-q) to ignore errors.',) + e.args = (str(e) + '... Use the quiet option (-q) to ignore streaming parser errors.',) raise e else: return {