diff options
author | Filipp Lepalaan <f@230.to> | 2013-05-13 11:17:55 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-05-13 11:17:55 +0300 |
commit | 8817984be657bed6f35f184ab53dc691123edb6d (patch) | |
tree | 090aacc34d76b209b5be84b1b429943ce17d761f /gsxws/products.py | |
parent | 800d8fbbef7e59bb875f3a05d1ddc7969259871f (diff) | |
download | py-gsxws-8817984be657bed6f35f184ab53dc691123edb6d.tar.gz py-gsxws-8817984be657bed6f35f184ab53dc691123edb6d.tar.bz2 py-gsxws-8817984be657bed6f35f184ab53dc691123edb6d.zip |
CompTIA fixes
Diffstat (limited to 'gsxws/products.py')
-rw-r--r-- | gsxws/products.py | 4 |
1 files changed, 2 insertions, 2 deletions
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] |