mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Merge branch 'help_message_fix' into 'master'
metadata: make help for common -W option clearer See merge request fdroid/fdroidserver!350
This commit is contained in:
commit
adc0c23db4
1 changed files with 2 additions and 2 deletions
|
|
@ -1545,5 +1545,5 @@ def write_metadata(metadatapath, app):
|
|||
|
||||
def add_metadata_arguments(parser):
|
||||
'''add common command line flags related to metadata processing'''
|
||||
parser.add_argument("-W", default='error',
|
||||
help=_("force errors to be warnings, or ignore"))
|
||||
parser.add_argument("-W", choices=['error', 'warn', 'ignore'], default='error',
|
||||
help=_("force metadata errors (default) to be warnings, or to be ignored."))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue