Read only text values from APEv2 tags. (#2828)

This commit is contained in:
Lukáš Lalinský
2007-05-08 12:47:46 +02:00
parent cf63bb1803
commit 44fd83be4e
2 changed files with 4 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ Version 0.9.0beta1 - 2007-XX-YY
* Always use musicbrainz.org for PUID submissions. (#2764)
* Files/Pending Files count not reset/recalculated after removing files. (#2541)
* Removed files still get processed during fingerprinting. (#2738)
* Read only text values from APEv2 tags. (#2828)
Version 0.9.0alpha8 - 2007-04-15
* New Features:

View File

@@ -50,6 +50,9 @@ class APEv2File(File):
metadata = Metadata()
if file.tags:
for origname, values in file.tags.items():
# skip EXTERNAL and BINARY values
if values.kind != mutagen.apev2.TEXT:
continue
for value in values:
name = origname
if name == "Year":