1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Improve rewritemeta --help

This commit is contained in:
Jochen Sprickerhof 2021-10-23 14:08:07 +02:00
parent e036f31613
commit e5dcf532b4

View File

@ -51,7 +51,7 @@ def main():
parser = ArgumentParser() parser = ArgumentParser()
common.setup_global_opts(parser) common.setup_global_opts(parser)
parser.add_argument("-l", "--list", action="store_true", default=False, parser.add_argument("-l", "--list", action="store_true", default=False,
help=_("List files that would be reformatted")) help=_("List files that would be reformatted (dry run)"))
parser.add_argument("appid", nargs='*', help=_("application ID of file to operate on")) parser.add_argument("appid", nargs='*', help=_("application ID of file to operate on"))
metadata.add_metadata_arguments(parser) metadata.add_metadata_arguments(parser)
options = parser.parse_args() options = parser.parse_args()