Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#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 Adrian Holovaty, 18 years ago

Summary: ./manage.py reset should honow --noinput"manage.py reset" should honor the "--noinput" option

Changed summary.

comment:2 by dev@…, 18 years ago

Cc: dev@… added

Shouldn't a method which destroys data require a confirmation?

comment:3 by HolgerSchurig, 18 years ago

Resolution: fixed
Status: newclosed

This feature request has been implemented by changeset #3888. Please close this bug.

comment:4 by James Bennett, 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.

Note: See TracTickets for help on using tickets.
Back to Top