diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-14 00:56:15 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-14 00:56:15 +0100 |
commit | f0f9f670b9084761023ba9c594b97a0ad37581ed (patch) | |
tree | a6a3b72d68f0f5783875cd721ce5e6686009078a /plugins/mpd_client.py | |
parent | 3ea5eb6163181ba016cfddcc616a171d7f309e76 (diff) | |
parent | 920c43dae25b06fd843dc8f8cbbf5e6bc5bf91c0 (diff) | |
download | poezio-f0f9f670b9084761023ba9c594b97a0ad37581ed.tar.gz poezio-f0f9f670b9084761023ba9c594b97a0ad37581ed.tar.bz2 poezio-f0f9f670b9084761023ba9c594b97a0ad37581ed.tar.xz poezio-f0f9f670b9084761023ba9c594b97a0ad37581ed.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'plugins/mpd_client.py')
-rw-r--r-- | plugins/mpd_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index b56e0d7f..833599ae 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -21,7 +21,7 @@ class Plugin(BasePlugin): s = '%(artist)s - %(title)s (%(album)s)' % current if 'full' in args: pourcentage = int(current_time / float(current['time']) * 10) - s += ' \x192[\x191' + '-'*(pourcentage-1) + '\x193+' + '\x191' + '-' * (10-pourcentage-1) + '\x192]\x19o' + s += ' \x192}[\x191}' + '-'*(pourcentage-1) + '\x193}+' + '\x191}' + '-' * (10-pourcentage-1) + '\x192}]\x19o' if not self.core.send_message('%s' % (s,)): self.core.information('Cannot send result (%s), this is not a conversation tab' % result) |