m3u: Update docs.

This commit is contained in:
Thomas Kemmer 2016-01-10 19:45:00 +01:00
parent 2bcf1a6b00
commit 1715756b14
2 changed files with 14 additions and 2 deletions

View File

@ -54,3 +54,14 @@ See :ref:`config` for general help on configuring Mopidy.
Path to directory with M3U files. Unset by default, in which case the Path to directory with M3U files. Unset by default, in which case the
extension's data dir is used to store playlists. extension's data dir is used to store playlists.
.. confval:: m3u/default_encoding
Text encoding used for files with extension ``.m3u``. Default is
``latin-1``. Note that files with extension ``.m3u8`` are always
expected to be UTF-8 encoded.
.. confval:: m3u/default_extension
The file extension for M3U playlists created using the core playlist
API. Default is ``.m3u8``.

View File

@ -347,13 +347,14 @@ class PlaylistsProvider(object):
""" """
Create a new empty playlist with the given name. Create a new empty playlist with the given name.
Returns a new playlist with the given name and an URI. Returns a new playlist with the given name and an URI, or :class:`None`
on failure.
*MUST be implemented by subclass.* *MUST be implemented by subclass.*
:param name: name of the new playlist :param name: name of the new playlist
:type name: string :type name: string
:rtype: :class:`mopidy.models.Playlist` :rtype: :class:`mopidy.models.Playlist` or :class:`None`
""" """
raise NotImplementedError raise NotImplementedError