﻿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
13610	Missing ENGINE setting in settings.py doesn't produce error	Jani Tiainen	Gregor Müllegger	"Given following database config:

{{{
#!python
DATABASES = {
             'default' : {
#                         'ENGINE' : '',
                          'USER' : 'myuser',
                          'PASSWORD' : 'mypass',
                          'HOST' : '128.0.0.1',
			  'NAME' : 'mydb',
                          'PORT' : '5432',
                          },
}
}}}

Doesn't produce helpful information, only:
{{{
$ ./manage.py syncdb
Unknown command: 'syncdb'
Type 'manage.py help' for usage.
}}}

{{{ ./manage.py help }}} produces correct list of runnable commands.
"		closed	Core (Other)	dev		fixed	settings config		Ready for checkin	1	0	0	0	0	0
