From 018e69f558c4ad36cefce42a11c2cdfe7270cb04 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Sat, 3 Oct 2015 10:57:56 +0300 Subject: [PATCH 1/1] nmbug-status: print config errors to stderr Particularly scripted usage with stdout redirection can be confusing if errors are printed to stdout instead of stderr. --- devel/nmbug/nmbug-status | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/nmbug/nmbug-status b/devel/nmbug/nmbug-status index a289798e..b36b6ad3 100755 --- a/devel/nmbug/nmbug-status +++ b/devel/nmbug/nmbug-status @@ -318,7 +318,7 @@ args = parser.parse_args() try: config = read_config(path=args.config) except ConfigError as e: - print(e) + print(e, file=sys.stderr) sys.exit(1) header_template = config['meta'].get('header', ''' -- 2.43.0