From 4c7ad57e73bc58632994538d080b7d42addf86ce Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 9 Feb 2015 13:31:27 +0100 Subject: [PATCH] mpd: Capitalize abbrevations in docstrings --- mopidy/mpd/uri_mapper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mopidy/mpd/uri_mapper.py b/mopidy/mpd/uri_mapper.py index 99413493..082f1311 100644 --- a/mopidy/mpd/uri_mapper.py +++ b/mopidy/mpd/uri_mapper.py @@ -32,7 +32,7 @@ class MpdUriMapper(object): def insert(self, name, uri): """ - Create a unique and MPD compatible name that maps to the given uri. + Create a unique and MPD compatible name that maps to the given URI. """ name = self._create_unique_name(name, uri) self._uri_from_name[name] = uri @@ -49,7 +49,7 @@ class MpdUriMapper(object): def refresh_playlists_mapping(self): """ Maintain map between playlists and unique playlist names to be used by - MPD + MPD. """ if self.core is not None: for playlist in self.core.playlists.playlists.get(): @@ -72,7 +72,7 @@ class MpdUriMapper(object): def playlist_name_from_uri(self, uri): """ - Helper function to retrieve the unique MPD playlist name from its uri. + Helper function to retrieve the unique MPD playlist name from its URI. """ if uri not in self._name_from_uri: self.refresh_playlists_mapping()