diff options
Diffstat (limited to 'portato/gui/gtk/usetips.py')
-rw-r--r-- | portato/gui/gtk/usetips.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/gtk/usetips.py b/portato/gui/gtk/usetips.py index d59e397..75bb63f 100644 --- a/portato/gui/gtk/usetips.py +++ b/portato/gui/gtk/usetips.py @@ -66,11 +66,11 @@ class UseTips (TreeViewTooltips): string = "" if len(enabled) > 0: - string = "<b>+"+"\n+".join(enabled)+"</b>" + string = "<b>+%s</b>" % ("\n+".join(enabled),) if len(disabled) > 0: string = string + "\n" if len(disabled) > 0: - string = string+"<i>- " + "\n- ".join(disabled) + "</i>" + string = string+"<i>- %s</i>" % ("\n- ".join(disabled),) return string |