We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 190e03a commit 649a729Copy full SHA for 649a729
django_mongoengine/forms/document_options.py
@@ -72,6 +72,10 @@ class DocumentMetaWrapper(object):
72
except AttributeError:
73
pass
74
app_config = Options.__dict__["app_config"]
75
+ try:
76
+ _property_names = Options.__dict__["_property_names"]
77
+ except AttributeError:
78
+ pass
79
80
def __init__(self, document):
81
if isinstance(document._meta, DocumentMetaWrapper):
0 commit comments