diff options
| -rw-r--r-- | django/utils/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/html.py b/django/utils/html.py index 71122ac79e..63db147ff1 100644 --- a/django/utils/html.py +++ b/django/utils/html.py @@ -278,7 +278,7 @@ def smart_urlquote(url): class CountsDict(dict): def __init__(self, *args, word, **kwargs): - super().__init__(*args, *kwargs) + super().__init__(*args, **kwargs) self.word = word def __missing__(self, key): |
