From 6b0c03db9ddc7c6fd4aace1f20e2e47fda421dc9 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Thu, 10 Apr 2014 11:50:59 -0700 Subject: [PATCH] info: don't print out album art blobs --- beetsplug/info.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beetsplug/info.py b/beetsplug/info.py index bb8f353c9..f5bb6a34a 100644 --- a/beetsplug/info.py +++ b/beetsplug/info.py @@ -26,6 +26,8 @@ from beets import util def info(paths): # Set up fields to output. fields = list(mediafile.MediaFile.fields()) + fields.remove('art') + fields.remove('images') # Line format. other_fields = ['album art']