﻿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
28412	"BaseCommand ""help"" masks Python builtin"	Carl Dunham	nobody	"When creating a command using BaseCommand, the help text is included in a class variable called 'help'. This masks the Python global 'help' function.

While not likely to arise in normal use ('help' is considered an interactive command), this isn't a good code smell.

{{{
class Command(BaseCommand):
    help = 'Useful Advice'
}}}

https://pypi.python.org/pypi/flake8-builtins could be considered helpful here.

"	Uncategorized	new	Uncategorized	1.11	Normal				Unreviewed	0	0	0	0	0	0
