From 8817984be657bed6f35f184ab53dc691123edb6d Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Mon, 13 May 2013 11:17:55 +0300 Subject: CompTIA fixes --- gsxws/products.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gsxws/products.py') diff --git a/gsxws/products.py b/gsxws/products.py index a82f9d4..f77957d 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -20,7 +20,7 @@ class Product(GsxObject): Returns the model description of this Product >>> Product('DGKFL06JDHJP').model().configDescription - 'iMac (27-inch, Mid 2011)' + u'iMac (27-inch, Mid 2011)' """ result = self._submit("productModelRequest", "FetchProductModel") @@ -38,7 +38,7 @@ class Product(GsxObject): warranty status request, the unit level warranty information is returned. >>> Product('DGKFL06JDHJP').warranty().warrantyStatus - 'Out Of Warranty (No Coverage)' + u'Out Of Warranty (No Coverage)' """ self._submit("unitDetail", "WarrantyStatus", "warrantyDetailInfo") self.warrantyDetails = self._req.objects[0] -- cgit v1.2.3