From 606d47a315043056daf88e8e48812db68af2578c Mon Sep 17 00:00:00 2001 From: Zach Denton Date: Thu, 18 Sep 2014 17:13:09 -0400 Subject: [PATCH] Update type of last_played to library.DateType(). --- beetsplug/mpdstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/mpdstats.py b/beetsplug/mpdstats.py index f03e284..c198445 100644 --- a/beetsplug/mpdstats.py +++ b/beetsplug/mpdstats.py @@ -313,7 +313,7 @@ class MPDStatsPlugin(plugins.BeetsPlugin): item_types = { 'play_count': types.INTEGER, 'skip_count': types.INTEGER, - 'last_played': library.Date(), + 'last_played': library.DateType(), 'rating': types.FLOAT, }