From 159a4dad42a1ffd23034ac0a0e7436d61fc1e5ec Mon Sep 17 00:00:00 2001
From: Dimitur Kirov <dkirov@gmail.com>
Date: Sat, 17 Sep 2005 08:42:37 +0000
Subject: [PATCH] prevent NoneType TB if fontattrs are not set

---
 src/gtkgui_helpers.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/gtkgui_helpers.py b/src/gtkgui_helpers.py
index 23704ecc75..0d9b69531f 100644
--- a/src/gtkgui_helpers.py
+++ b/src/gtkgui_helpers.py
@@ -38,10 +38,11 @@ def get_theme_font_for_option(theme, option):
 	font_name = gajim.config.get_per('themes', theme, option)
 	font_desc = pango.FontDescription()
 	font_prop_str =  gajim.config.get_per('themes', theme, option + 'attrs')
-	if font_prop_str.find('B') != -1:
-		font_desc.set_weight(pango.WEIGHT_BOLD)
-	if font_prop_str.find('I') != -1:
-		font_desc.set_style(pango.STYLE_ITALIC)
+	if font_prop_str:
+		if font_prop_str.find('B') != -1:
+			font_desc.set_weight(pango.WEIGHT_BOLD)
+		if font_prop_str.find('I') != -1:
+			font_desc.set_style(pango.STYLE_ITALIC)
 	fd = pango.FontDescription(font_name)
 	fd.merge(font_desc, True)
 	return fd.to_string()
-- 
GitLab