Fixed #26620 -- Made Model.refresh_from_db() fail when passed unknown kwargs.

This commit is contained in:
Marti Raudsepp 2016-05-16 21:49:03 +03:00 committed by Tim Graham
parent a5c8072ab1
commit b9ae662c97
3 changed files with 7 additions and 2 deletions

View file

@ -128,7 +128,7 @@ in the ``from_db()`` method.
Refreshing objects from database
================================
.. method:: Model.refresh_from_db(using=None, fields=None, **kwargs)
.. method:: Model.refresh_from_db(using=None, fields=None)
If you need to reload a model's values from the database, you can use the
``refresh_from_db()`` method. When this method is called without arguments the