Merge pull request #3126 from jumpserver/v52_manager

[Update] 修复资产用户管理器获取 __name__ 的问题
pull/3129/head
BaiJiangJie 2019-08-15 15:28:40 +08:00 committed by GitHub
commit 10de4f4ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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))