From 3b949a256d96283e2efeb8d62f9400dd383e8456 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Thu, 23 May 2013 09:40:02 +0300 Subject: Fixed activation check --- gsxws/products.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gsxws/products.py') diff --git a/gsxws/products.py b/gsxws/products.py index 04d3fee..d3c1860 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -99,7 +99,7 @@ class Product(GsxObject): fetch activation details of iOS Devices. >>> Product('013348005376007').activation().unlocked - 'true' + True >>> Product('W874939YX92').activation().unlocked # doctest: +ELLIPSIS Traceback (most recent call last): ... @@ -107,7 +107,8 @@ class Product(GsxObject): """ self._namespace = "glob:" act = self._submit("FetchIOSActivationDetailsRequest", - "FetchIOSActivationDetails") + "FetchIOSActivationDetails", + "activationDetailsInfo") return act -- cgit v1.2.3