Changelog and slight reformatting for #1269

This commit is contained in:
Adrian Sampson 2015-01-26 15:14:45 -08:00
parent 94020963d2
commit e3c127b159
2 changed files with 7 additions and 1 deletions

View file

@ -229,8 +229,10 @@ class WriteError(FileOperationError):
class LibModel(dbcore.Model):
"""Shared concrete functionality for Items and Albums.
"""
_format_config_key = None
"""Config key that specifies how an instance should be formatted"""
"""Config key that specifies how an instance should be formatted.
"""
def _template_funcs(self):
funcs = DefaultTemplateFunctions(self, self._db).functions()

View file

@ -42,6 +42,10 @@ Core changes:
``albumtotal`` computed attribute that provides the total number of tracks
on the album. (The :ref:`per_disc_numbering` option has no influence on this
field.)
* The :ref:`list_format_album` and :ref:`list_format_item` configuration keys
now affect (almost) every place where objects are printed and logged.
(Previously, they only controlled the :ref:`list-cmd` command and a few
other scattered pieces.) :bug:`1269`
Fixes: