Fix log typo

This commit is contained in:
croneter 2018-11-03 18:38:51 +01:00
parent bfef7a346e
commit 9c3c8b0d35

View file

@ -812,7 +812,7 @@ class KodiDBMethods(object):
"""
Returns the collection/set id for set_name [unicode]
"""
LOG.debug("Adding boxset: %s", set_name)
LOG.debug("Adding movie set/collection: %s", set_name)
query = 'SELECT idSet FROM sets WHERE strSet = ? COLLATE NOCASE'
self.cursor.execute(query, (set_name,))
try: