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/roster_window.py')
-rw-r--r--src/roster_window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/roster_window.py b/src/roster_window.py
index 78a0271cf..234484d02 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -1702,7 +1702,7 @@ class RosterWindow:
if not 'com.google.code.Awn' in bus.list_names():
# Awn is not installed
return
- except:
+ except Exception:
return
iconset = gajim.config.get('iconset')
prefix = os.path.join(helpers.get_iconset_path(iconset), '32x32')
@@ -2379,7 +2379,7 @@ class RosterWindow:
titer = None
try:
titer = model.get_iter(row)
- except:
+ except Exception:
self.tooltip.hide_tooltip()
return
if model[titer][C_TYPE] in ('contact', 'self_contact'):