diff options
author | natural <natural> | 2007-01-10 21:23:34 +0000 |
---|---|---|
committer | natural <natural> | 2007-01-10 21:23:34 +0000 |
commit | 46a6aae6b909db116e0bd69764adce069c4e0275 (patch) | |
tree | 04560971bfe7511113a0629c3e78f6f472f3d09d /kberylsettings/aboutpage.py | |
parent | c61b941817107402d535b8cc6304e002ac4cc0e4 (diff) | |
download | kberylsettings-46a6aae6b909db116e0bd69764adce069c4e0275.tar.gz kberylsettings-46a6aae6b909db116e0bd69764adce069c4e0275.tar.bz2 |
Support for profile set.
Diffstat (limited to 'kberylsettings/aboutpage.py')
-rw-r--r-- | kberylsettings/aboutpage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kberylsettings/aboutpage.py b/kberylsettings/aboutpage.py index f7db1ec..75e057d 100644 --- a/kberylsettings/aboutpage.py +++ b/kberylsettings/aboutpage.py @@ -83,7 +83,7 @@ class AboutPage(Frame): self.pluginHREF % (plugin.Name, plugin.ShortDesc), plugin.LongDesc) rows.append(row) - rows = [self.contentCell % (i18n(a), b) for a, b in rows] + rows = [self.contentCell % (i18n(str(a)), b) for a, b in rows] rows = [self.contentRow % row for row in rows] extra = '<div>%s</div>' % i18n(self.contextExtra) return self.contentContainer % (str.join('', rows), extra) |