From 7104e051c1c53c1348c1ebb630e5074ea49943b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Pedro=20Fernandes=20Santos?= Date: Wed, 9 Aug 2017 23:05:05 +0100 Subject: [PATCH] Fixed argument name in call_command() docstring. Follow up to 8f6a1a15516629b30e2fa2c48d5e682f7955868c. --- django/core/management/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index 0a1b2e4f53..43598e2fb9 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -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')