From 1de1ff2823a4121bd3b02987b1a114b45c941235 Mon Sep 17 00:00:00 2001 From: matejcik Date: Tue, 21 Aug 2018 19:03:07 +0200 Subject: [PATCH] tx_api: fix issue on python < 3.5 --- trezorlib/tx_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/tx_api.py b/trezorlib/tx_api.py index 949b68fb6f..2d961b28c5 100644 --- a/trezorlib/tx_api.py +++ b/trezorlib/tx_api.py @@ -31,7 +31,7 @@ class TxApi(object): self.url = url def get_url(self, *args): - return "/".join(map(str, [self.url, "api", *args])) + return "/".join(map(str, [self.url, "api"] + list(args))) def fetch_json(self, resource, resourceid): global cache_dir