summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Systray.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-03-07 12:15:37 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-03-07 12:15:37 +0100
commit371d1cd71c442b5edeab10b0ae94dbecb9f4059f (patch)
tree44e622da8507dff9672cfa5f9cc21740a60081c6 /nephilim/plugins/Systray.py
parent614047bd96f374e11e4776bd1b1858492ad92c84 (diff)
Systray: use APPNAME.
Diffstat (limited to 'nephilim/plugins/Systray.py')
-rw-r--r--nephilim/plugins/Systray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nephilim/plugins/Systray.py b/nephilim/plugins/Systray.py
index c64defd..ed819bc 100644
--- a/nephilim/plugins/Systray.py
+++ b/nephilim/plugins/Systray.py
@@ -69,7 +69,7 @@ class Systray(Plugin):
if song:
self.o.setToolTip(expand_tags(self.format, (song,)))
else:
- self.o.setToolTip('mpclientpc not playing')
+ self.o.setToolTip('%s not playing'%APPNAME)
try:
curTime = (64*status['time'])/status['length']