diff --git a/plugins/lastfm.py b/plugins/lastfm.py index 5218a4d..e9dee3b 100755 --- a/plugins/lastfm.py +++ b/plugins/lastfm.py @@ -5,7 +5,7 @@ from util import hook, http @hook.command('lfm', autohelp=False) @hook.command(autohelp=False) def lastfm(inp, nick='', say=None, db=None, bot=None): - ".lastfm -- Displays the now playing (or recent) tracks of LastFM user ." + ".lastfm [user] -- Displays the now playing (or recent) tracks of LastFM user [user]." if inp: user = inp else: @@ -37,7 +37,7 @@ def lastfm(inp, nick='', say=None, db=None, bot=None): if inp: # specified a user name return "error: %s" % response["message"] else: - return "your nick is not a LastFM account. try '.lastfm '" + return "your nick is not a LastFM account. try '.lastfm [user]'" tracks = response["recenttracks"]["track"]