diff options
Diffstat (limited to 'gsxws.py')
-rwxr-xr-x | gsxws.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -857,7 +857,7 @@ class Product(GsxObject): raise GsxError('Cannot fetch product image with image URL') try: - urllib.urlretrieve(self.imageURL) + result = urllib.urlretrieve(self.imageURL) return result[0] except Exception, e: raise GsxError('Failed to fetch product image: %s' % e) |