﻿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
16695	a line which is never executed	anonymous	nobody	"
{{{
    def fetch_command(self, subcommand):
        """"""
        Tries to fetch the given subcommand, printing a message with the
        appropriate command called from the command line (usually
        ""django-admin.py"" or ""manage.py"") if it can't be found.
        """"""
        try:

             app_name = get_commands()[subcommand]

        except KeyError:
            sys.stderr.write(""Unknown command: %r\nType '%s help' for usage.\n"" % \
                (subcommand, self.prog_name))
            sys.exit(1)
        if isinstance(app_name, BaseCommand):
            # If the command is already loaded, use it directly.
            klass = app_name
        else:
            klass = load_command_class(app_name, subcommand)
        return klass


}}}
{{{isinstance(app_name, BaseCommand) }}}this line will always be false

 

"	Uncategorized	closed	Uncategorized	1.3	Normal	invalid	management		Unreviewed	0	0	0	0	1	0
