fix:add changelog entry and fix line indentation.

This commit is contained in:
jcass 2016-01-21 05:55:37 +02:00
parent 88e9a12f02
commit 2fcbc691c0
2 changed files with 8 additions and 3 deletions

View File

@ -23,6 +23,10 @@ Core API
- Add :meth:`mopidy.core.PlaylistsController.get_uri_schemes`. (PR:
:issue:`1362`)
- The ``track_playback_ended`` event now includes the correct ``tl_track``
reference when changing to the next track in consume mode. (Fixes:
:issue:`1402` PR: :issue:`1403`)
Models
------
@ -37,7 +41,7 @@ Extension support
we let Mopidy crash if an extension's setup crashed. (PR: :issue:`1337`)
Local backend
--------------
-------------
- Made :confval:`local/data_dir` really deprecated. This change breaks older
versions of Mopidy-Local-SQLite and Mopidy-Local-Images.

View File

@ -491,8 +491,9 @@ class EventEmissionTest(BaseTest):
],
listener_mock.send.mock_calls)
def test_next_emits_events_when_consume_mode_is_enabled(self,
listener_mock):
def test_next_emits_events_when_consume_mode_is_enabled(
self,
listener_mock):
tl_tracks = self.core.tracklist.get_tl_tracks()
self.core.tracklist.set_consume(True)