From 5b312ecc774a03c34f34f33e4e83f2bb481abcae Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Wed, 1 Feb 2012 17:12:16 -0500 Subject: [PATCH] fix bug when raising PermissionError --- sfa/managers/registry_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/managers/registry_manager.py b/sfa/managers/registry_manager.py index b5be45ff..9fd26597 100644 --- a/sfa/managers/registry_manager.py +++ b/sfa/managers/registry_manager.py @@ -76,8 +76,8 @@ class RegistryManager: rights = api.auth.determine_user_rights(caller_hrn, record) # make sure caller has rights to this object if rights.is_empty(): - raise PermissionError(caller_hrn + " has no rights to " + record['name']) - + raise PermissionError("%s has no rights to %s (%s)" % \ + (caller_hrn, object_hrn, xrn)) object_gid = GID(string=record['gid']) new_cred = Credential(subject = object_gid.get_subject()) new_cred.set_gid_caller(caller_gid) -- 2.47.0