Fixed typo in django/test/utils.py.

This commit is contained in:
Bruno Alla 2023-07-27 06:54:22 +02:00 committed by Mariusz Felisiak
parent 86561844ce
commit a564f44350
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ class modify_settings(override_settings):
except KeyError:
value = list(getattr(settings, name, []))
for action, items in operations.items():
# items my be a single value or an iterable.
# items may be a single value or an iterable.
if isinstance(items, str):
items = [items]
if action == "append":