summaryrefslogtreecommitdiffstats
path: root/samloader/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'samloader/main.py')
-rw-r--r--samloader/main.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/samloader/main.py b/samloader/main.py
index 9088e45..f828208 100644
--- a/samloader/main.py
+++ b/samloader/main.py
@@ -16,6 +16,9 @@ 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
+ if status != 200:
+ raise Exception("DownloadBinaryInform returned {}, firmware could not be found?".format(status))
filename = root.find("./FUSBody/Put/BINARY_NAME/Data").text
path = root.find("./FUSBody/Put/MODEL_PATH/Data").text
return path, filename