diff options
| author | François Freitag <mail@franek.fr> | 2020-04-25 15:53:30 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-04-27 08:30:16 +0200 |
| commit | abea86f9e44a8eda9ad1859fe05a91509bdb8011 (patch) | |
| tree | 7389b9afd85fdb5c653d38557068d44bc8caa278 /django/urls | |
| parent | 687cb38a05414f1e1fe6b255735d998bfc9741b4 (diff) | |
Removed unnecessary tuple wrapping of single format string argument.
Diffstat (limited to 'django/urls')
| -rw-r--r-- | django/urls/resolvers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/urls/resolvers.py b/django/urls/resolvers.py index 3c95e1d686..fbe5a0fdb5 100644 --- a/django/urls/resolvers.py +++ b/django/urls/resolvers.py @@ -670,7 +670,7 @@ class URLResolver: if args: arg_msg = "arguments '%s'" % (args,) elif kwargs: - arg_msg = "keyword arguments '%s'" % (kwargs,) + arg_msg = "keyword arguments '%s'" % kwargs else: arg_msg = "no arguments" msg = ( |
