diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-07-18 17:54:15 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-07-18 11:54:15 -0400 |
| commit | a73cf8110e6cccbf46bf77fd4ddce2df99df53ca (patch) | |
| tree | 1403b374e47a80000eef37bc4c43c2c412cb5e97 /django/core | |
| parent | 6e78e1054933c36a2e0fdf998db780c88bdef4a9 (diff) | |
Removed duplicate words in various comments.
Diffstat (limited to 'django/core')
| -rw-r--r-- | django/core/management/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index bffa3d666a..b4c28b3e62 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -118,8 +118,8 @@ def call_command(command_name, *args, **options): } arg_options = {opt_mapping.get(key, key): value for key, value in options.items()} parse_args = [str(a) for a in args] - # Any required arguments which are passed in via **options must must be - # passed to parse_args(). + # Any required arguments which are passed in via **options must be passed + # to parse_args(). parse_args += [ '{}={}'.format(min(opt.option_strings), arg_options[opt.dest]) for opt in parser._actions if opt.required and opt.dest in options |
