display weboob-config-qt at launch on Qt applications when there are no configured backends

This commit is contained in:
Romain Bignon 2010-08-20 12:22:04 +02:00
commit f0ea8829a2
5 changed files with 24 additions and 3 deletions

View file

@ -280,7 +280,7 @@ class BackendCfg(QDialog):
backend.version,
backend.maintainer.replace('&', '&amp;').replace('<', '&lt;').replace('>', '&gt;'),
backend.license,
('<b>Website</b>: %s<br />' % backend.website) if backend.website else '',
(unicode(self.tr('<b>Website</b>: %s<br />')) % backend.website) if backend.website else '',
backend.description,
', '.join([cap.__name__ for cap in backend.iter_caps()])))