From b60348996dd88fddc9c84792ad3e48bbcea0779f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Leban?= <45397728+gasar8@users.noreply.github.com> Date: Thu, 18 Jun 2026 11:41:22 +0200 Subject: [PATCH] fix: documentation example typo --- src/DIRAC/Core/Utilities/Proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DIRAC/Core/Utilities/Proxy.py b/src/DIRAC/Core/Utilities/Proxy.py index f393c8c8172..af0b66fec7e 100644 --- a/src/DIRAC/Core/Utilities/Proxy.py +++ b/src/DIRAC/Core/Utilities/Proxy.py @@ -22,7 +22,7 @@ def undecoratedFunction(foo='bar'): print foo, os.environ.get('X509_USER_PROXY') return S_OK() - executeWithUserProxy(testFcn)(foo='baz', proxyUserName='atsareg', proxyUserGroup='biomed_user') + executeWithUserProxy(undecoratedFunction)(foo='baz', proxyUserName='atsareg', proxyUserGroup='biomed_user') :class:`UserProxy` context manager example::