diff options
Diffstat (limited to 'gsxws')
-rw-r--r-- | gsxws/products.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws/products.py b/gsxws/products.py index 281c097..6fa4666 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -103,7 +103,7 @@ class Product(object): try: for i in self.warrantyDetails.availableRepairStrategies: self.repair_strategies.append(i.availableRepairStrategy) - except AttributeError: + except (AttributeError, TypeError): pass return self.warrantyDetails |