fixed issue on schemas.py where if model._meta.get_field(variable) failed model_field was not set to None and would reult in an error

This commit is contained in:
Chris Carty 2017-03-09 21:11:52 -05:00
parent 544b4b9948
commit bc2c76a000

View File

@ -531,7 +531,7 @@ class SchemaGenerator(object):
try:
model_field = model._meta.get_field(variable)
except:
pass
model_field = None # Set model_field to None so it doesn't fail test
if model_field is not None and model_field.verbose_name:
title = force_text(model_field.verbose_name)