We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 497cbcd commit eec21b3Copy full SHA for eec21b3
import_export/fields.py
@@ -64,6 +64,8 @@ def get_value(self, obj):
64
repr(value), attr)
65
raise exceptions.FieldError(msg)
66
value = getattr(value, attr)
67
+ if value is None:
68
+ return None
69
70
if callable(value):
71
value = value()
0 commit comments