From f706576adf16bd44fe10386a570cbb657b412066 Mon Sep 17 00:00:00 2001 From: Srinivas Reddy Thatiparthy Date: Sat, 28 Jan 2017 18:39:42 +0530 Subject: [PATCH] [1.11.x] Removed obsolete sentence in ManagementUtility docstring. Backport of a6755b29e9335723c9347a36d4000a3157b05441 from master --- django/core/management/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/django/core/management/__init__.py b/django/core/management/__init__.py index fdc1af2aa2..6466130f5f 100644 --- a/django/core/management/__init__.py +++ b/django/core/management/__init__.py @@ -133,9 +133,6 @@ def call_command(command_name, *args, **options): class ManagementUtility(object): """ Encapsulates the logic of the django-admin and manage.py utilities. - - A ManagementUtility has a number of commands, which can be manipulated - by editing the self.commands dictionary. """ def __init__(self, argv=None): self.argv = argv or sys.argv[:]