summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Systray.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2010-04-30 08:25:54 +0200
committerAnton Khirnov <wyskas@gmail.com>2010-04-30 08:25:54 +0200
commit48c1445953b12bd247e1d74dbd436d867cea7ebd (patch)
tree8882090b02f87ddf3ecdfff410c96ca54e507133 /nephilim/plugins/Systray.py
parent1ff1ec58b8ad638e7ffa901a38351cecb3478320 (diff)
song: use string.Template for expanding $tags.
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 084ec9d..1f28597 100644
--- a/nephilim/plugins/Systray.py
+++ b/nephilim/plugins/Systray.py
@@ -33,7 +33,7 @@ class Systray(Plugin):
# private
format = None
eventObj = None
- DEFAULTS = {'format': '$track - $title by $artist on $album ($length)'}
+ DEFAULTS = {'format': '${track} - ${title} by ${artist} on ${album} (${length})'}
def _load(self):
self.format = self.settings.value(self.name + '/format').toString()