﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
27000	Django manage Command.usage() is broken	Ilya	nobody	"This method access self.args which is not set.

How to reproduce:
{{{

import os

import django

os.environ.setdefault(""DJANGO_SETTINGS_MODULE"", ""untitled8.settings"")


django.setup()

from django.core.management.commands import createcachetable

createcachetable.Command().usage("""")
}}}

Result:
{{{
    usage = '%%prog %s [options] %s' % (subcommand, self.args)
AttributeError: 'Command' object has no attribute 'args'
}}}"	Cleanup/optimization	closed	Core (Management commands)	1.10	Normal	fixed			Accepted	1	0	0	0	0	0
