From 62566ee61ddde9c6de8d6e527820fa32acaf579f Mon Sep 17 00:00:00 2001 From: soergeld Date: Sat, 25 Apr 2020 23:13:38 +0200 Subject: [PATCH] remove prints for testing --- beets/autotag/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/beets/autotag/__init__.py b/beets/autotag/__init__.py index 2dcf93c52..530dcaf6e 100644 --- a/beets/autotag/__init__.py +++ b/beets/autotag/__init__.py @@ -41,9 +41,7 @@ log = logging.getLogger('beets') def apply_item_metadata(item, track_info): """Set an item's metadata from its matched TrackInfo object. """ - print('zer' in track_info) for attr in track_info: - print(attr in track_info) item.__setattr__(attr, getattr(track_info, attr)) # At the moment, the other metadata is left intact (including album