Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/disco.py')
-rw-r--r--src/disco.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/disco.py b/src/disco.py
index be51419a4..337ad5911 100644
--- a/src/disco.py
+++ b/src/disco.py
@@ -1103,7 +1103,7 @@ class ToplevelAgentBrowser(AgentBrowser):
iter = None
try:
iter = self.model.get_iter(row)
- except:
+ except Exception:
self.tooltip.hide_tooltip()
return
jid = self.model[iter][0]
@@ -1961,7 +1961,7 @@ class DiscussionGroupsBrowser(AgentBrowser):
have items on the list, we should actualize them. '''
try:
subscriptions = request.getTag('pubsub').getTag('subscriptions')
- except:
+ except Exception:
return
groups = set()