Fixed argument name in call_command() docstring.

Follow up to 8f6a1a1551.
This commit is contained in:
Raúl Pedro Fernandes Santos 2017-08-09 23:05:05 +01:00 committed by Tim Graham
parent bb91c0a4dc
commit 7104e051c1
1 changed files with 3 additions and 2 deletions

View File

@ -79,8 +79,9 @@ def call_command(command_name, *args, **options):
This is the primary API you should use for calling specific commands.
`name` may be a string or a command object. Using a string is preferred
unless the command object is required for further processing or testing.
`command_name` may be a string or a command object. Using a string is
preferred unless the command object is required for further processing or
testing.
Some examples:
call_command('migrate')