diff options
author | Filipp Lepalaan <f@0x00.co> | 2013-04-03 11:29:31 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@0x00.co> | 2013-04-03 11:29:31 +0300 |
commit | 7bfb67ae53795cd820f7df8ba9ca1a134377bb1a (patch) | |
tree | 74fba7247f90fcd484119954d584f57dd92cfa5d /gsxws.py | |
parent | f666cb4d1ec12498b671eb361f5c60461288b6ba (diff) | |
download | py-gsxws-7bfb67ae53795cd820f7df8ba9ca1a134377bb1a.tar.gz py-gsxws-7bfb67ae53795cd820f7df8ba9ca1a134377bb1a.tar.bz2 py-gsxws-7bfb67ae53795cd820f7df8ba9ca1a134377bb1a.zip |
Fix fetching Product image
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) |