diff --git a/beets/dbcore/query.py b/beets/dbcore/query.py index da466a6ba..7b0728408 100644 --- a/beets/dbcore/query.py +++ b/beets/dbcore/query.py @@ -538,7 +538,8 @@ class Period(object): def __init__(self, date, precision): """Create a period with the given date (a `datetime` object) and - precision (a string, one of "year", "month", or "day"). + precision (a string, one of "year", "month", "day", "hour", "minute", or + "second"). """ if precision not in Period.precisions: raise ValueError(u'Invalid precision {0}'.format(precision))