mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 16:34:45 +01:00
fix a couple of typos found by RIT students
This commit is contained in:
parent
7a0bfff00a
commit
fc109e3a3d
2 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ ALBUM_WEIGHT = 3.0
|
|||
TRACK_WEIGHT = 1.0
|
||||
# The weight of a missing track.
|
||||
MISSING_WEIGHT = 0.9
|
||||
# The weight of an extra (umatched) track.
|
||||
# The weight of an extra (unmatched) track.
|
||||
UNMATCHED_WEIGHT = 0.6
|
||||
# These distances are components of the track distance (that is, they
|
||||
# compete against each other but not ARTIST_WEIGHT and ALBUM_WEIGHT;
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ def album_info(release):
|
|||
int(medium['position']),
|
||||
int(track['position']))
|
||||
if track.get('title'):
|
||||
# Track title may be distinct from underling recording
|
||||
# Track title may be distinct from underlying recording
|
||||
# title.
|
||||
ti.title = track['title']
|
||||
ti.disctitle = disctitle
|
||||
|
|
|
|||
Loading…
Reference in a new issue