From 01b04171f68d8e4b47d1e5cc03d45f7b47173b13 Mon Sep 17 00:00:00 2001 From: Nayil Mukhametshin <66028747+nlscc@users.noreply.github.com> Date: Wed, 30 Sep 2020 21:28:34 +0100 Subject: fix regression (#13) --- samloader/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'samloader') diff --git a/samloader/main.py b/samloader/main.py index f828208..d1c37f5 100644 --- a/samloader/main.py +++ b/samloader/main.py @@ -16,7 +16,7 @@ def getbinaryfile(client, fw, region, model): req = request.binaryinform(fw, region, model, client.nonce) resp = client.makereq("NF_DownloadBinaryInform.do", req) root = ET.fromstring(resp) - status = root.find("./FUSBody/Results/Status").text + status = int(root.find("./FUSBody/Results/Status").text) if status != 200: raise Exception("DownloadBinaryInform returned {}, firmware could not be found?".format(status)) filename = root.find("./FUSBody/Put/BINARY_NAME/Data").text -- cgit v1.2.3