Files
openide/python/testData/formatter/alignmentOfClosingParenthesisOfArgumentListWhenNoHangingIndent.py
Mikhail Golubev 964d78b0d9 PY-13004 Add test for the code sample given by user
Issue itself was fixed earlier together with PY-12145, PY-14838 and
PY-13955.
2015-01-29 13:03:48 +03:00

20 lines
697 B
Python

option_list = BaseCommand.option_list + (
make_option('-d', '--db',
dest='db',
metavar='DB_ID',
help='Mandatory: DATABASES setting key for database'),
make_option('-p', '--project',
dest='project',
default='UNGA',
metavar='PROJECT_LABEL',
help=('Project to use (can specify "any"). '
'Default: "UNGA"'),
),
make_option('-b', '--batch',
dest='batch',
default='UNGA',
metavar='BATCH_LABEL',
help=('Batch to use (can specify "any"). '
'Default: "UNGA"'),
),
)