mirror of
https://github.com/beetbox/beets.git
synced 2025-12-31 04:52:49 +01:00
hash attribute values as tuples instead of stringifying on SOH char
This commit is contained in:
parent
fb0e03dd6b
commit
9999460cb4
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ def _group_by(objs, keys, strict, log):
|
|||
'skipping',
|
||||
keys, displayable_path(obj.path))
|
||||
else:
|
||||
key = '\001'.join(values)
|
||||
key = tuple(values)
|
||||
counts[key].append(obj)
|
||||
|
||||
return counts
|
||||
|
|
|
|||
Loading…
Reference in a new issue