summaryrefslogtreecommitdiff
path: root/portato/gui/gtk/usetips.py
diff options
context:
space:
mode:
authornecoro <>2007-02-20 19:53:20 +0000
committernecoro <>2007-02-20 19:53:20 +0000
commitb4f5605505dad572f4c4ea47e03d8d678c351003 (patch)
treed338947ac9bc8ef7b4c1998fa6d653b7a120bfa5 /portato/gui/gtk/usetips.py
parent0713215207a7eed95bed8e4ca9044c3eed5f3827 (diff)
downloadportato-b4f5605505dad572f4c4ea47e03d8d678c351003.tar.gz
portato-b4f5605505dad572f4c4ea47e03d8d678c351003.tar.bz2
portato-b4f5605505dad572f4c4ea47e03d8d678c351003.zip
Renamed package.get_env_var to package.get_package_settings
Diffstat (limited to '')
-rw-r--r--portato/gui/gtk/usetips.py4
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
'>2008-06-23Fixed name of gpytage pluginRené 'Necoro' Neumann1-1/+1 2008-06-23Moved GtkThread to gui.utilsRené 'Necoro' Neumann5-29/+25 2008-06-22Implemented the mail sendingRené 'Necoro' Neumann2-3/+63 2008-06-22First mail window draftRené 'Necoro' Neumann3-0/+220 2008-06-10Added gpytage pluginRené 'Necoro' Neumann2-0/+29 2008-06-10Modified plugin.xsd so it allows also menu-only pluginsRené 'Necoro' Neumann2-7/+8 2008-06-10Fixed the default handlingRené 'Necoro' Neumann1-1/+1 2008-06-10Allowed default for session; load 'app-portage/portato' as default for ↵René 'Necoro' Neumann2-10/+18 selections :) 2008-06-09Fixed 'kill' in the systray popupRené 'Necoro' Neumann1-2/+2 2008-06-09Fixed error messageRené 'Necoro' Neumann2-4/+1 2008-06-08Make blocks way more intelligentRené 'Necoro' Neumann3-45/+107