we can launch Gajim even if we have no connection (this will have to be launched in a thread)
This commit is contained in:
parent
7668643750
commit
4202e2549b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue