Skip to content

Commit 82d8fbc

Browse files
committed
fix (wms): error message missing values in ConfigHelper
1 parent e283949 commit 82d8fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/WorkloadManagementSystem/private/ConfigHelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def findGenericPilotCredentials(vo=False, group=False, pilotDN="", pilotGroup=""
4545
gLogger.verbose("Pilot credentials: %s@%s" % (pilotDN, pilotGroup))
4646
result = gProxyManager.userHasProxy(pilotDN, pilotGroup, 86400)
4747
if not result["OK"]:
48-
return S_ERROR("%s@%s has no proxy in ProxyManager")
48+
return S_ERROR("%s@%s has no proxy in ProxyManager" % (pilotDN, pilotGroup))
4949
return S_OK((pilotDN, pilotGroup))
5050

5151
if pilotDN:

0 commit comments

Comments
 (0)