mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Fix doc and flake8 build (again)
This commit is contained in:
parent
fe0a2482f3
commit
3554c0925c
3 changed files with 3 additions and 3 deletions
|
|
@ -75,7 +75,8 @@ def print_tag_info(lib, args, summarize=False):
|
||||||
try:
|
try:
|
||||||
data = tag_data(path)
|
data = tag_data(path)
|
||||||
except mediafile.UnreadableFileError:
|
except mediafile.UnreadableFileError:
|
||||||
ui.print_('cannot read file: {0}'.format(displayable_path(path)))
|
ui.print_('cannot read file: {0}'
|
||||||
|
.format(displayable_path(path)))
|
||||||
else:
|
else:
|
||||||
print_data(path, data)
|
print_data(path, data)
|
||||||
first = False
|
first = False
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ Changelog
|
||||||
This release adds **sorting** to beets queries. See :ref:`query-sort`.
|
This release adds **sorting** to beets queries. See :ref:`query-sort`.
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
||||||
* :doc:`/plugins/info`: Files can be specified through library queries
|
* :doc:`/plugins/info`: Files can be specified through library queries
|
||||||
and the `--library` option prints library fields instead of tags.
|
and the `--library` option prints library fields instead of tags.
|
||||||
Tags and library fields can be summarized with `--summarize` option.
|
Tags and library fields can be summarized with `--summarize` option.
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,6 @@
|
||||||
# The above copyright notice and this permission notice shall be
|
# The above copyright notice and this permission notice shall be
|
||||||
# included in all copies or substantial portions of the Software.
|
# included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
import os
|
|
||||||
import os.path
|
|
||||||
from _common import unittest
|
from _common import unittest
|
||||||
from helper import TestHelper
|
from helper import TestHelper
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue