Field name lookup: improve error message
This commit is contained in:
parent
8f77d6db9f
commit
db6cd7e318
@ -215,7 +215,7 @@ class BasicPrimaryObject(TableObject, PrivacyBase, TagBase):
|
|||||||
elif part in schema.keys():
|
elif part in schema.keys():
|
||||||
path = schema[part]
|
path = schema[part]
|
||||||
else:
|
else:
|
||||||
raise Exception("No such '%s' in %s" % (part, list(schema.keys())))
|
raise Exception("No such field. Valid fields are: %s" % list(schema.keys()))
|
||||||
if isinstance(path, (list, tuple)):
|
if isinstance(path, (list, tuple)):
|
||||||
path = path[0]
|
path = path[0]
|
||||||
return path
|
return path
|
||||||
|
Loading…
Reference in New Issue
Block a user