From 9bb278f00e6c86bc55f32f83437b534152788d75 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 22 Apr 2015 22:48:43 +0200 Subject: [PATCH] core: Make history controller traversable Fixes mopidy/mopidy.js#6 --- docs/changelog.rst | 2 ++ mopidy/core/history.py | 1 + 2 files changed, 3 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index ebc42c44..0c470386 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -10,6 +10,8 @@ v1.0.1 (UNRELEASED) Bug fix release. +- Core: Make the new history controller available for use. (Fixes: :js:`6`) + - Audio: Software volume control has been reworked to greatly reduce the delay between changing the volume and the change taking effect. (Fixes: :issue:`1097`) diff --git a/mopidy/core/history.py b/mopidy/core/history.py index f0d5e9d4..ae697e8e 100644 --- a/mopidy/core/history.py +++ b/mopidy/core/history.py @@ -11,6 +11,7 @@ logger = logging.getLogger(__name__) class HistoryController(object): + pykka_traversable = True def __init__(self): self._history = []