From 49b331e6c722e407be4785eca9ac19f585e0b1af Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Thu, 10 Oct 2019 17:26:16 +0200 Subject: [PATCH] Output updates incl. download URL. --- get_updates.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/get_updates.py b/get_updates.py index fba1fc7..d24825e 100644 --- a/get_updates.py +++ b/get_updates.py @@ -100,12 +100,13 @@ results = [] if opts.express: print("Querying Garmin Express ...", end="", flush=True) - results.append(us.query_express(device_skus)) + results += us.query_express(device_skus) print(" done.") if opts.webupdater: print("Querying Garmin WebUpdater ...", end="", flush=True) - results.append(us.query_webupdater(device_skus)) + results += us.query_webupdater(device_skus) print(" done.") -print(results) +for r in results: + print(r)