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:
|
||||
data = tag_data(path)
|
||||
except mediafile.UnreadableFileError:
|
||||
ui.print_('cannot read file: {0}'.format(displayable_path(path)))
|
||||
ui.print_('cannot read file: {0}'
|
||||
.format(displayable_path(path)))
|
||||
else:
|
||||
print_data(path, data)
|
||||
first = False
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ Changelog
|
|||
This release adds **sorting** to beets queries. See :ref:`query-sort`.
|
||||
|
||||
Features:
|
||||
|
||||
* :doc:`/plugins/info`: Files can be specified through library queries
|
||||
and the `--library` option prints library fields instead of tags.
|
||||
Tags and library fields can be summarized with `--summarize` option.
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@
|
|||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
|
||||
import os
|
||||
import os.path
|
||||
from _common import unittest
|
||||
from helper import TestHelper
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue