From fc5dfb852b90ec8e5c266751eda7710bb2b96160 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 9 Feb 2022 23:10:18 -0500 Subject: wraptool: report name of wrap in status message for "not in wrapdb" --- mesonbuild/wrap/wraptool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/wrap/wraptool.py') diff --git a/mesonbuild/wrap/wraptool.py b/mesonbuild/wrap/wraptool.py index de1c43f..664bfec 100644 --- a/mesonbuild/wrap/wraptool.py +++ b/mesonbuild/wrap/wraptool.py @@ -225,7 +225,7 @@ def status(options: 'argparse.Namespace') -> None: try: (current_branch, current_revision, _, _, _) = get_current_version(w) except Exception: - print('Wrap file not from wrapdb.', file=sys.stderr) + print('', name, 'Wrap file not from wrapdb.', file=sys.stderr) continue if current_branch == latest_branch and current_revision == latest_revision: print('', name, f'up to date. Branch {current_branch}, revision {current_revision}.') -- cgit v1.1