mirror of
https://github.com/beetbox/beets.git
synced 2025-12-27 02:52:33 +01:00
remove stray ITEM_FIELDS reference (#650)
This commit is contained in:
parent
33b44717ab
commit
b79a1199ad
1 changed files with 1 additions and 5 deletions
|
|
@ -18,7 +18,6 @@
|
|||
import os
|
||||
|
||||
from beets.plugins import BeetsPlugin
|
||||
from beets import library
|
||||
from beets import ui
|
||||
from beets import mediafile
|
||||
from beets import util
|
||||
|
|
@ -26,10 +25,7 @@ from beets import util
|
|||
|
||||
def info(paths):
|
||||
# Set up fields to output.
|
||||
fields = []
|
||||
for name, _, _, mffield in library.ITEM_FIELDS:
|
||||
if mffield:
|
||||
fields.append(name)
|
||||
fields = list(mediafile.MediaFile.fields())
|
||||
|
||||
# Line format.
|
||||
other_fields = ['album art']
|
||||
|
|
|
|||
Loading…
Reference in a new issue