diff options
| author | Nick Pope <nick@nickpope.me.uk> | 2022-01-28 20:15:53 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-10-31 12:30:13 +0100 |
| commit | d3cb91db87b78629c0d2682630e90a048275179e (patch) | |
| tree | 92476354cbb4df1bcff3cd1514a1bac6cbc98676 /django/urls/base.py | |
| parent | a320aab5129f4019b3c1d28b7a3b509582bc56f9 (diff) | |
Used more augmented assignment statements.
Identified using the following command:
$ git grep -I '\(\<[_a-zA-Z0-9]\+\>\) *= *\1 *[-+/*^%&|<>@]'
Diffstat (limited to 'django/urls/base.py')
| -rw-r--r-- | django/urls/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/urls/base.py b/django/urls/base.py index 647ef3e2de..753779c75b 100644 --- a/django/urls/base.py +++ b/django/urls/base.py @@ -70,7 +70,7 @@ def reverse(viewname, urlconf=None, args=None, kwargs=None, current_app=None): try: extra, resolver = resolver.namespace_dict[ns] resolved_path.append(ns) - ns_pattern = ns_pattern + extra + ns_pattern += extra ns_converters.update(resolver.pattern.converters) except KeyError as key: if resolved_path: |
