From 6eb66c276050310218c5de8c3776bc88f5c9efaf Mon Sep 17 00:00:00 2001 From: Grant Date: Thu, 17 Oct 2024 16:10:30 +0100 Subject: [PATCH] Set pyosmium-get-changes diff-type default Set pyosmium-get-changes diff-type default "osc.gz". Currently unset which causes download attempt of None. --- tools/pyosmium-get-changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pyosmium-get-changes b/tools/pyosmium-get-changes index 3c90105..02af748 100755 --- a/tools/pyosmium-get-changes +++ b/tools/pyosmium-get-changes @@ -129,7 +129,7 @@ def get_arg_parser(from_main=False): help="Format the data should be saved in.") parser.add_argument('--server', action='store', dest='server_url', help='Base URL of the replication server') - parser.add_argument('--diff-type', action='store', dest='server_diff_type', + parser.add_argument('--diff-type', action='store', dest='server_diff_type', default='osc.gz', help='File format used by the replication server (default: osc.gz)') parser.add_argument('--cookie', dest='cookie', help='Netscape-style cookie jar file to read cookies from '