diff options
| author | Taoufik <abacidtaoufik@gmail.com> | 2018-10-14 16:20:22 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-10-14 11:20:52 -0400 |
| commit | 6efe2ba0579922f54ced24fdb8aed96049a67270 (patch) | |
| tree | bc2110734b28c9a53d17217c26ae3423f154cf60 /django/utils/datastructures.py | |
| parent | 19968895220b517168df7ba2798468f165a858cc (diff) | |
[2.1.x] Fixed typo in django/utils/datastructures.py.
Backport of f07091a30fbac713a03d292ec1c901f0a7757440 from master
Diffstat (limited to 'django/utils/datastructures.py')
| -rw-r--r-- | django/utils/datastructures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py index 9c52bd3ae2..c5bda0056a 100644 --- a/django/utils/datastructures.py +++ b/django/utils/datastructures.py @@ -193,7 +193,7 @@ class MultiValueDict(dict): def update(self, *args, **kwargs): """Extend rather than replace existing key lists.""" if len(args) > 1: - raise TypeError("update expected at most 1 arguments, got %d" % len(args)) + raise TypeError("update expected at most 1 argument, got %d" % len(args)) if args: other_dict = args[0] if isinstance(other_dict, MultiValueDict): |
