mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-07 08:58:38 +00:00
Fix alignment of tracker icons when tracker does not have an icon
This commit is contained in:
parent
757f55f38e
commit
695e6a8c6e
1 changed files with 12 additions and 4 deletions
|
@ -99,7 +99,13 @@ class TrackerIcons(object):
|
||||||
return ("png", png)
|
return ("png", png)
|
||||||
|
|
||||||
# FIXME: This should be cleaned up and not copy the top code
|
# FIXME: This should be cleaned up and not copy the top code
|
||||||
html = urlopen("http://%s/" % (host_name,))
|
|
||||||
|
try:
|
||||||
|
html = urlopen("http://%s/" % (host_name,))
|
||||||
|
except Exception, e:
|
||||||
|
log.debug(e)
|
||||||
|
html = None
|
||||||
|
|
||||||
if html:
|
if html:
|
||||||
icon_path = ""
|
icon_path = ""
|
||||||
line = html.readline()
|
line = html.readline()
|
||||||
|
@ -138,13 +144,15 @@ class TrackerIcons(object):
|
||||||
|
|
||||||
if icon_data:
|
if icon_data:
|
||||||
filename = os.path.join(get_default_config_dir("icons"),"%s.%s" % (tracker_host, ext))
|
filename = os.path.join(get_default_config_dir("icons"),"%s.%s" % (tracker_host, ext))
|
||||||
print filename
|
|
||||||
f = open(filename,"wb")
|
f = open(filename,"wb")
|
||||||
f.write(icon_data)
|
f.write(icon_data)
|
||||||
f.close()
|
f.close()
|
||||||
self.images[tracker_host] = filename
|
self.images[tracker_host] = filename
|
||||||
if callback:
|
else:
|
||||||
gobject.idle_add(callback, filename)
|
filename = None
|
||||||
|
|
||||||
|
if callback:
|
||||||
|
gobject.idle_add(callback, filename)
|
||||||
|
|
||||||
def get_async(self, tracker_host, callback):
|
def get_async(self, tracker_host, callback):
|
||||||
if tracker_host in self.images:
|
if tracker_host in self.images:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue