This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/allura.git
commit 25fb5386d1b5cf4ddafd5b46daea3aebcc40c433 Author: Guillermo Cruz <[email protected]> AuthorDate: Mon May 25 10:01:53 2026 -0600 fixup! [#8608] precommit pin dependencies and updates --- Allura/allura/lib/macro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Allura/allura/lib/macro.py b/Allura/allura/lib/macro.py index c3ebca198..4595629fd 100644 --- a/Allura/allura/lib/macro.py +++ b/Allura/allura/lib/macro.py @@ -415,7 +415,7 @@ def include(ref=None, repo=None, **kw): return '[[include %s (not found)]]' % ref artifact = link.ref.artifact if artifact is None: - return '[[include (artifact not found)]]' % ref + return '[[include (artifact not found %s)]]' % ref if not h.has_access(artifact, 'read'): return "[[include: you don't have a read permission for %s]]" % ref included = request.environ.setdefault('allura.macro.included', set())
