Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions beetsplug/fish.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import os
from operator import attrgetter

from beets import library, ui
from beets import library, plugins, ui
from beets.plugins import BeetsPlugin
from beets.ui import commands

Expand Down Expand Up @@ -111,7 +111,7 @@ def run(self, lib, opts, args):
nobasicfields = opts.noFields # Do not complete for album/track fields
extravalues = opts.extravalues # e.g., Also complete artists names
beetcmds = sorted(
(commands.default_commands + commands.plugins.commands()),
(commands.default_commands + plugins.commands()),
key=attrgetter("name"),
)
fields = sorted(set(library.Album.all_keys() + library.Item.all_keys()))
Expand Down
7 changes: 4 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ Unreleased
New features
~~~~~~~~~~~~
..
Bug fixes
~~~~~~~~~
Bug fixes
~~~~~~~~~

- :doc:`plugins/fish`: Fix AttributeError. :bug:`6340`

..
For plugin developers
Expand Down
Loading