From ca86c18e3351863ec25bf0448b05d3ed078777d9 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Mon, 24 Aug 2020 14:49:22 +0200 Subject: [PATCH] publish: reformat --- fdroidserver/publish.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fdroidserver/publish.py b/fdroidserver/publish.py index 425cba43..b766f273 100644 --- a/fdroidserver/publish.py +++ b/fdroidserver/publish.py @@ -156,14 +156,14 @@ def status_update_json(newKeyAliases, generatedKeys, signedApks): def main(): - global config, options # Parse command line... parser = ArgumentParser(usage="%(prog)s [options] " - "[APPID[:VERCODE] [APPID[:VERCODE] ...]]") + "[APPID[:VERCODE] [APPID[:VERCODE] ...]]") common.setup_global_opts(parser) - parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]")) + parser.add_argument("appid", nargs='*', + help=_("applicationId with optional versionCode in the form APPID[:VERCODE]")) metadata.add_metadata_arguments(parser) options = parser.parse_args() metadata.warnings_action = options.W