Skip to content

Commit

Permalink
send ignore msg to stderr in check_package_config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA committed Feb 13, 2024
1 parent e567794 commit 39d1300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/check_package_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
assert args[-1] not in ("-i", "--ignore"), "-i/--ignore option requires package name"
ignore_list = [args[iarg+1] for iarg in range(len(args)) if args[iarg] in ("-i", "--ignore")]
if ignore_list:
print("Ignoring the following packages: %s" % ", ".join(ignore_list))
print("Ignoring the following packages: %s" % ", ".join(ignore_list), file=sys.stderr)
else:
ignore_list = []

Expand Down

0 comments on commit 39d1300

Please sign in to comment.