summaryrefslogtreecommitdiff
path: root/django/forms
diff options
context:
space:
mode:
authorbelegnar <admin@zilantkon.ru>2019-04-03 09:05:15 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-03 09:05:15 +0200
commit1ffddfc233e2d5139cc6ec31a4ec6ef70b10f87f (patch)
treef2af8085c62461668e73e48c52d2d828a07ed41c /django/forms
parent714cf468e10ccbfca6a97095939563a52b99e2eb (diff)
Fixed #30302 -- Fixed forms.model_to_dict() result if empty list of fields is passed.
Diffstat (limited to 'django/forms')
-rw-r--r--django/forms/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/models.py b/django/forms/models.py
index d157c291ef..5edbbd376f 100644
--- a/django/forms/models.py
+++ b/django/forms/models.py
@@ -83,7 +83,7 @@ def model_to_dict(instance, fields=None, exclude=None):
for f in chain(opts.concrete_fields, opts.private_fields, opts.many_to_many):
if not getattr(f, 'editable', False):
continue
- if fields and f.name not in fields:
+ if fields is not None and f.name not in fields:
continue
if exclude and f.name in exclude:
continue