we can launch Gajim even if we have no connection (this will have to be launched in a thread)

This commit is contained in:
Yann Leboulanger 2005-05-06 19:53:26 +00:00
parent 7668643750
commit 4202e2549b
1 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,10 @@ GTKGUI_GLADE='gtkgui.glade'
class Check_for_new_version_dialog:
def __init__(self, plugin):
self.plugin = plugin
self.check_for_new_version()
try:
self.check_for_new_version()
except:
pass
def parse_glade(self):
xml = gtk.glade.XML(GTKGUI_GLADE, 'new_version_available_dialog', APP)