Opened 16 years ago

Closed 16 years ago

#7386 closed (fixed)

manage.py syncdb "--interactive" option doesn't exist

Reported by: Paul Winkler Owned by: nobody
Component: Uncategorized Version: 0.96
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The output of manage.py --help includes this:

  syncdb [--verbosity] [--interactive]
    Create the database tables for all apps in INSTALLED_APPS whose
    tables haven't already been created.

But if you run manage.py syncdb --interactive, you get this error:

manage.py: error: no such option: --interactive

From looking at the code, it appears that the relevant option is really "--noinput".

Change History (1)

comment:1 by Adrian Holovaty, 16 years ago

Resolution: fixed
Status: newclosed

This has been fixed in trunk.

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