summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerene-Arc <33189705+Serene-Arc@users.noreply.github.com>2023-11-24 18:10:54 +1000
committerSerene-Arc <33189705+Serene-Arc@users.noreply.github.com>2023-11-24 18:15:11 +1000
commit9dd59058fe229ff742310829b624d516ecdca358 (patch)
tree57816311b4eebacda449803a3374c575a1554953
parent2892be9892daf41d6e7866331a9cf5f448856130 (diff)
Fix comparison
-rwxr-xr-xbeets/ui/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/beets/ui/commands.py b/beets/ui/commands.py
index 824b79e7c..439858477 100755
--- a/beets/ui/commands.py
+++ b/beets/ui/commands.py
@@ -682,7 +682,7 @@ class AlbumChange(ChangeRepresentation):
# Construct the line tuple for the track.
left, right = self.make_line(item, track_info)
- if left != right:
+ if right["contents"] != "":
lines.append((left, right))
else:
if config["import"]["detail"]: