diff --git a/maloja/proccontrol/tasks/__init__.py b/maloja/proccontrol/tasks/__init__.py index cd5be4c..9fd1159 100644 --- a/maloja/proccontrol/tasks/__init__.py +++ b/maloja/proccontrol/tasks/__init__.py @@ -22,7 +22,7 @@ def loadexternal(filename): msg = f"Skipped {result['CONFIDENT_SKIP'] + result['UNCERTAIN_SKIP']} scrobbles" if result['UNCERTAIN_SKIP'] > 0: - warningmsg = col['orange'](f"{result['UNCERTAIN_SKIP']} Warning{'s' if result['UNCERTAIN_SKIP'] != 1 else ''}!") + warningmsg = col['indianred'](f"{result['UNCERTAIN_SKIP']} Warning{'s' if result['UNCERTAIN_SKIP'] != 1 else ''}!") msg += f" ({warningmsg})" print(msg) diff --git a/maloja/proccontrol/tasks/import_scrobbles.py b/maloja/proccontrol/tasks/import_scrobbles.py index 0d22df0..bfdb248 100644 --- a/maloja/proccontrol/tasks/import_scrobbles.py +++ b/maloja/proccontrol/tasks/import_scrobbles.py @@ -14,7 +14,7 @@ outputs = { "UNCERTAIN_IMPORT": lambda msg: print(col['orange'](msg)), #"CONFIDENT_SKIP": lambda msg: print(col['ffcba4'](msg)), "CONFIDENT_SKIP": lambda msg: None, - "UNCERTAIN_SKIP": lambda msg: print(col['orange'](msg)), + "UNCERTAIN_SKIP": lambda msg: print(col['indianred'](msg)), "FAIL": lambda msg: print(col['red'](msg)), } diff --git a/pyproject.toml b/pyproject.toml index 4e09dec..219601d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "malojaserver" -version = "2.14.7" +version = "2.14.8" description = "Self-hosted music scrobble database" readme = "./README.md" requires-python = ">=3.6"