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/chat_control.py')
-rw-r--r--src/chat_control.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chat_control.py b/src/chat_control.py
index 86a3c1e12..323dd6ea1 100644
--- a/src/chat_control.py
+++ b/src/chat_control.py
@@ -56,7 +56,7 @@ from common.xmpp.protocol import NS_ESESSION
try:
import gtkspell
HAS_GTK_SPELL = True
-except:
+except Exception:
HAS_GTK_SPELL = False
HAVE_MARKUP_TOOLTIPS = gtk.pygtk_version >= (2, 12, 0)
@@ -281,7 +281,7 @@ class ChatControlBase(MessageControl):
for lang in dict(langs):
try:
spell.set_language(langs[lang])
- except:
+ except Exception:
del langs[lang]
# now set the one the user selected
per_type = 'contacts'