vcx
This commit is contained in:
parent
50029701f9
commit
b529d36183
1 changed files with 5 additions and 1 deletions
|
@ -56,7 +56,11 @@ class Badge(Base):
|
||||||
@property
|
@property
|
||||||
@lazy
|
@lazy
|
||||||
def name(self):
|
def name(self):
|
||||||
return self.badge.name
|
try: return self.badge.name
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
print(self.badge_id)
|
||||||
|
return ""
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@lazy
|
@lazy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue