diff --git a/beets/library.py b/beets/library.py index 7f66693666..1f8a89695a 100644 --- a/beets/library.py +++ b/beets/library.py @@ -1146,8 +1146,10 @@ def items(self): """Return an iterable over the items associated with this album. - This method predates the :meth:`LibModel.items` method inherited - from :meth:`beets.dbcore.Model.items`. + This method conflicts with :meth:`LibModel.items`, which is + inherited from :meth:`beets.dbcore.Model.items`. + Since :meth:`Album.items` predates these methods, and is + likely to be used by plugins, we keep this interface as-is. """ return self._db.items(dbcore.MatchQuery('album_id', self.id))