aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-02-09 23:10:18 -0500
committerEli Schwartz <eschwartz@archlinux.org>2022-02-27 18:37:15 -0500
commitfc5dfb852b90ec8e5c266751eda7710bb2b96160 (patch)
treeec536453cef712a564ae2daf29ad98eaa43d7abc /mesonbuild
parent769680f848701eb738e18fd9266b876d88f4fcf8 (diff)
downloadmeson-fc5dfb852b90ec8e5c266751eda7710bb2b96160.zip
meson-fc5dfb852b90ec8e5c266751eda7710bb2b96160.tar.gz
meson-fc5dfb852b90ec8e5c266751eda7710bb2b96160.tar.bz2
wraptool: report name of wrap in status message for "not in wrapdb"
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/wrap/wraptool.py2
1 files changed, 1 insertions, 1 deletions
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}.')