mirror of
https://github.com/beetbox/beets.git
synced 2025-12-20 15:43:58 +01:00
fix iteration over keys instead of values
This commit is contained in:
parent
ef36890a4e
commit
e30a776baa
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ def diff(item1, item2):
|
|||
fields.
|
||||
"""
|
||||
result = 0.0
|
||||
for attr in ATTRIBUTES:
|
||||
for attr in ATTRIBUTES.values():
|
||||
if attr == 'bpm':
|
||||
# BPM (tempo) is handled specially to normalize.
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in a new issue