From e3e9c0284bb1723cb3bbd969f79eb85a96ac96cc Mon Sep 17 00:00:00 2001 From: Casey Link Date: Wed, 9 Feb 2011 20:15:24 -0500 Subject: [PATCH] fix the double 'ago' in now playing --- modules/lastfm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lastfm.py b/modules/lastfm.py index 942b73d..6dcb163 100644 --- a/modules/lastfm.py +++ b/modules/lastfm.py @@ -126,7 +126,7 @@ def now_playing(phenny, input): return else: past = get_verb(nick)[0] - phenny.say("%s %s \"%s\" by %s on %s %s ago" %(user.strip(), past.strip(), track, artist, album, pretty_date(stamp))) + phenny.say("%s %s \"%s\" by %s on %s %s" %(user.strip(), past.strip(), track, artist, album, pretty_date(stamp))) now_playing.commands = ['np']