Unverified Commit 820dcaaa authored by BaiJiangJie's avatar BaiJiangJie Committed by GitHub

Merge pull request #3127 from jumpserver/v52_manager

V52 manager
parents 907d93bc 214b4026
......@@ -71,9 +71,9 @@ class AssetUserManager:
if len(instances) == 1:
return instances[0]
elif len(instances) == 0:
self.raise_does_not_exist(self.__name__)
self.raise_does_not_exist(self.__class__.__name__)
else:
self.raise_multiple_return(self.__name__, len(instances))
self.raise_multiple_return(self.__class__.__name__, len(instances))
def raise_does_not_exist(self, name):
raise self.ObjectDoesNotExist(self.MSG_NOT_EXIST.format(name))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment