From b5ef996b1d95cbdd8a18776c5eea854c8917e16d 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 038ba0abc..1ea9c77d8 100644 --- a/trezorlib/tx_api.py +++ b/trezorlib/tx_api.py @@ -30,7 +30,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