url_path, url_tag = urllib.splittag(url_path)
url = "%s://%s%s" % (url_type, url_host, url_path)
- headers, content = self.urlretrieve(bookmark, url, True)
+ headers, content, error = self.urlretrieve(bookmark, url, True)
+
+ if error:
+ bookmark.error = error
if content is None:
return 1
_icon_url = icon_url
for i in range(8):
try:
- icon_headers, icon_data = self.urlretrieve(bookmark, _icon_url)
+ icon_headers, icon_data, error = self.urlretrieve(bookmark, _icon_url)
except RedirectException, e:
_icon_url = e.url
self.log(" redirect to : %s" % _icon_url)
content = infile.read()
infile.close()
- return headers, content
+ return headers, content, None
except IOError, msg:
if (msg[0] == "http error") and (msg[1] == -1):
+ error = None
bookmark.no_error = "The server did not return any header - it is not an error, actually"
self.log(' no headers: %s' % bookmark.no_error)
else:
- bookmark.error = get_error(msg)
- self.log(' Error: %s' % bookmark.error)
+ error = get_error(msg)
+ self.log(' Error: %s' % error)
- return None, None
+ return None, None, error
def get_ftp_welcome(self):
global ftpcache_key