Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#27988 closed Bug (fixed)

django-admin documentation typo (--v instead of -v)

Reported by: Ákos Owned by: nobody
Component: Documentation Version: 1.10
Severity: Normal 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

At https://docs.djangoproject.com/en/1.10/ref/django-admin/#cmdoption-verbosity, the short form of the flag is incorrectly prefixed with two dashes.
The usage output for the command shows only one (and fails with two):

$ python manage.py sqlmigrate --v 3 <app> <migration>
usage: manage.py sqlmigrate [-h] [--version] [-v {0,1,2,3}]
                            [--settings SETTINGS] [--pythonpath PYTHONPATH]
                            [--traceback] [--no-color] [--database DATABASE]
                            [--backwards]
                            app_label migration_name
manage.py sqlmigrate: error: ambiguous option: --v could match --verbosity, --version

Change History (4)

comment:1 by Tim Graham <timograham@…>, 7 years ago

Resolution: fixed
Status: newclosed

In ea36e745:

Fixed #27988 -- Fixed typo in docs/ref/django-admin.txt.

comment:2 by Tim Graham <timograham@…>, 7 years ago

In eba34c49:

[1.11.x] Fixed #27988 -- Fixed typo in docs/ref/django-admin.txt.

Backport of ea36e7454c267aab933e92481288e1eab636cd62 from master

comment:3 by Tim Graham <timograham@…>, 7 years ago

In ab38f4b:

[1.10.x] Fixed #27988 -- Fixed typo in docs/ref/django-admin.txt.

Backport of ea36e7454c267aab933e92481288e1eab636cd62 from master

comment:4 by Tim Graham <timograham@…>, 7 years ago

In 80f8d7d:

[1.9.x] Fixed #27988 -- Fixed typo in docs/ref/django-admin.txt.

Backport of ea36e7454c267aab933e92481288e1eab636cd62 from master

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