This commit is contained in:
ed 2021-03-02 00:12:15 +01:00
parent 61a6bc3a65
commit 7f9bf1c78c
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 8, 3)
CODENAME = "discovery"
BUILD_DT = (2021, 2, 22)
VERSION = (0, 9, 0)
CODENAME = "the strongest music server"
BUILD_DT = (2021, 3, 2)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -24,7 +24,7 @@ class MTag(object):
try:
import mutagen
except:
self.log("could not load mutagen, trying ffprobe instead")
self.log("\033[33mcould not load mutagen, trying ffprobe instead")
backend = "ffprobe"
if backend == "ffprobe":