Fix swapped artist and album in abcddb-tool parse
authorClinton Ebadi <clinton@unknownlamer.org>
Thu, 12 Dec 2013 21:04:38 +0000 (16:04 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Thu, 12 Dec 2013 21:04:38 +0000 (16:04 -0500)
abcddb-tool

index 414839d..3701916 100755 (executable)
@@ -120,8 +120,8 @@ of (disc-number . tag-value)"
   ;; Not exported CDDBGENRE intentionally, since it appears unused
     (format out "DISCID=$'~A'~%DALBUM=$'~A'~%DARTIST=$'~A'~%CDYEAR=$'~A'~%"
            (escape-for-shell (car (disc-query 'DISCID)))
   ;; Not exported CDDBGENRE intentionally, since it appears unused
     (format out "DISCID=$'~A'~%DALBUM=$'~A'~%DARTIST=$'~A'~%CDYEAR=$'~A'~%"
            (escape-for-shell (car (disc-query 'DISCID)))
-           (escape-for-shell artist)
            (escape-for-shell album)
            (escape-for-shell album)
+           (escape-for-shell artist)
            (escape-for-shell (car (disc-query 'YEAR))))
     
   ;; Store genre(s) in a bash array. mp3s will just have to live with
            (escape-for-shell (car (disc-query 'YEAR))))
     
   ;; Store genre(s) in a bash array. mp3s will just have to live with