From b15c4f2f861f83e1f5f1d0a04a40121fbcc1fcb7 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Thu, 12 Aug 2010 21:00:19 +0200 Subject: [PATCH] add debug if xdg is not installed --- weboob/core/backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/core/backends.py b/weboob/core/backends.py index f9cd5db3..482b5231 100644 --- a/weboob/core/backends.py +++ b/weboob/core/backends.py @@ -73,7 +73,7 @@ class Backend(object): try: import xdg.IconTheme except ImportError: - pass + debug(u'Python xdg module was not found. Please install it to read icon files.') else: self.klass.ICON = xdg.IconTheme.getIconPath(self.klass.NAME) return self.klass.ICON