diff options
author | Rasmus Steinke <rasi@xssn.at> | 2015-08-22 18:57:33 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2015-08-22 18:57:33 +0200 |
commit | 7cff1262038294210c55fd3df159d0bffb075389 (patch) | |
tree | 4ddc7e4ec585d69fc10f3c05f4c29ebda5156215 | |
parent | 4c4b8090f22cccb13e60fbd36fa1456b6a9f13dc (diff) | |
download | perl-app-clerk-7cff1262038294210c55fd3df159d0bffb075389.tar.gz perl-app-clerk-7cff1262038294210c55fd3df159d0bffb075389.tar.xz |
also reduce lists for album tags
-rwxr-xr-x | clerk_helper | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clerk_helper b/clerk_helper index 5e64652..79040c5 100755 --- a/clerk_helper +++ b/clerk_helper @@ -77,6 +77,7 @@ def createRecentList(allTracks): for t in allTracks: reduceToFstElm(t['date']) reduceToFstElm(t['albumartist']) + reduceToFstElm(t['album']) t['cto'] = parseISO8601(t['last-modified']) # ct = comparable time object accu = [] |