diff --git a/django/db/models/query.py b/django/db/models/query.py index 11de161bbb..642c2eb249 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -245,7 +245,7 @@ class QuerySet(object): def filter(self, **kwargs): "Returns a new QuerySet instance with the args ANDed to the existing set." clone = self._clone() - clone._filters.update(**kwargs) + clone._filters.update(kwargs) return clone def select_related(self, true_or_false=True):