Skip to content
Snippets Groups Projects
Commit 4202e254 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

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

parent 76686437
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment