Fixed the rest of @examine. Attribute checks should work now.
This commit is contained in:
parent
4fd99201b0
commit
3adc908ca2
1 changed files with 1 additions and 1 deletions
|
|
@ -2067,7 +2067,7 @@ class CmdExamine(ObjManipCommand):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if attrname:
|
if attrname:
|
||||||
db_attr = [(attrname, obj.attributes.get(attrname))]
|
db_attr = [(attrname, obj.attributes.get(attrname), None)]
|
||||||
try:
|
try:
|
||||||
ndb_attr = [(attrname, object.__getattribute__(obj.ndb, attrname))]
|
ndb_attr = [(attrname, object.__getattribute__(obj.ndb, attrname))]
|
||||||
except Exception:
|
except Exception:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue