From ec9356dc52329e4c7daefdb877b635cca08dadd2 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 24 Aug 2010 10:29:09 +0200 Subject: [PATCH] Add dependencies to docstring --- mopidy/frontends/lastfm.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mopidy/frontends/lastfm.py b/mopidy/frontends/lastfm.py index bf826141..3d65cb11 100644 --- a/mopidy/frontends/lastfm.py +++ b/mopidy/frontends/lastfm.py @@ -16,6 +16,10 @@ class LastfmFrontend(BaseFrontend): """ Frontend which scrobbles the music you plays to your Last.fm profile. + **Dependencies:** + + - `pylast `_ >= 0.4.30 + **Settings:** - :mod:`mopidy.settings.LASTFM_USERNAME` @@ -24,6 +28,7 @@ class LastfmFrontend(BaseFrontend): # TODO Split into own thread/process # TODO Add docs + # TODO Log nice error message if pylast isn't found def __init__(self, *args, **kwargs): super(LastfmFrontend, self).__init__(*args, **kwargs)