correct ID3 tag name for catalognum (GC-385)

This commit is contained in:
Adrian Sampson 2012-05-17 11:46:01 -07:00
parent a6c1ad2235
commit 0e9f296cf0
2 changed files with 2 additions and 1 deletions

View file

@ -861,7 +861,7 @@ class MediaFile(object):
etc = StorageStyle('ASIN'),
)
catalognum = MediaField(
mp3 = StorageStyle('TXXX', id3_desc=u'TXXX:CATALOGNUMBER'),
mp3 = StorageStyle('TXXX', id3_desc=u'CATALOGNUMBER'),
mp4 = StorageStyle("----:com.apple.iTunes:CATALOGNUMBER"),
etc = StorageStyle('CATALOGNUMBER'),
)

View file

@ -17,6 +17,7 @@ Changelog
copied. This solves a problem (introduced in 1.0b14) where beets could crash
after adding files to the library but before finishing copying them; during
the next import, the (external) files would be moved instead of copied.
* Fix ID3 tag name for the catalog number field.
1.0b14 (May 12, 2012)
---------------------