From 7a8079e9c4f276ce948e89cbe8dcd602bea32c36 Mon Sep 17 00:00:00 2001 From: Kim Wittenburg <5wittenb@informatik.uni-hamburg.de> Date: Tue, 4 Sep 2018 17:28:06 +0200 Subject: [PATCH] Fix missing copyright bug --- beetsplug/itunes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/itunes.py b/beetsplug/itunes.py index 8b4cdb8..63d9a89 100644 --- a/beetsplug/itunes.py +++ b/beetsplug/itunes.py @@ -302,7 +302,7 @@ class iTunesPlugin(BeetsPlugin): info.genre = album.primary_genre_name info.itunes_advisory = decode_explicitness(album.collection_explicitness) info.itunes_artwork_url = decode_artwork_url(album.artwork_url_100) - info.copyright = album.copyright + info.copyright = album.copyright if hasattr(album, 'copyright') return info def make_track_info(self, track, index):