#2752 closed enhancement (fixed)
"manage.py reset" should honor the "--noinput" option
Reported by: | HolgerSchurig | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Core (Other) | Version: | |
Severity: | normal | Keywords: | |
Cc: | dev@… | Triage Stage: | Unreviewed |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Like ./manage.py syncdb now honors --noinput, this should also be done for the "reset" method so that it doesn't prompt for the "yes/no" input any more.
Change History (4)
comment:1 by , 18 years ago
Summary: | ./manage.py reset should honow --noinput → "manage.py reset" should honor the "--noinput" option |
---|
comment:2 by , 18 years ago
Cc: | added |
---|
Shouldn't a method which destroys data require a confirmation?
comment:3 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This feature request has been implemented by changeset #3888. Please close this bug.
comment:4 by , 18 years ago
Responding to dev@simon: the default is still "interactive" mode, but for people who want to do automated setup/teardown/reset of testing installations, it'll probably be helpful that they can now do --noinput
or interactive=False
in order to programmatically call the reset
function.
Changed summary.