From 8a00791ecca90999b570f0d3f385d99f288413dd Mon Sep 17 00:00:00 2001 From: Mike Cameron Date: Sun, 1 Jan 2017 04:52:32 -0500 Subject: [PATCH] Oops. Forgot to actually stage the correct file. --- beetsplug/discogs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/discogs.py b/beetsplug/discogs.py index cf10a2a36..905358024 100644 --- a/beetsplug/discogs.py +++ b/beetsplug/discogs.py @@ -314,7 +314,9 @@ class DiscogsPlugin(BeetsPlugin): # Only real tracks have `position`. Otherwise, it's an index track. if track['position']: index += 1 - tracks.append(self.get_track_info(track, index)) + ti = self.get_track_info(track, index) + ti.alt_track_no = track['position'] + tracks.append(ti) else: index_tracks[index + 1] = track['title']