From 765863f6f70df0bb31cdc3f15d0f0048cff4d7a3 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 11 Jan 2023 13:59:58 -0500 Subject: [PATCH] [14] fix doc error --- VERSION | 2 +- docs/metadata/templates.md | 2 +- plex_meta_manager.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 897cf508..369e5aef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.2-develop13 +1.18.2-develop14 diff --git a/docs/metadata/templates.md b/docs/metadata/templates.md index 6578c2ab..2d6b4b42 100644 --- a/docs/metadata/templates.md +++ b/docs/metadata/templates.md @@ -145,7 +145,7 @@ There are some attributes unique to `templates`; `default`, `optional`, `conditi * `optional` can specify variables that if not specified on the template call will cause any attribute using one of those variables to be ignored in the template. You can make any template variable optional per collection by setting it to `null`. * `conditionals` can specify variables based on conditions set by the user. See more [here](#conditionals) * `move_prefix` can be given a list or comma-separated string of prefixes to move to the end of the collection/playlist name for sorting. - i.e. If you have `move_prefix: The` and a collection is called `The Avengers` then `<>` is replaced with `Avengers, The` instead of `The Avengers` for that collection. + i.e. If you have `move_prefix: The` and a collection is called `The Avengers` then `<>` is replaced with `Avengers, The` instead of `The Avengers` for that collection. Every template call is given these template variables. diff --git a/plex_meta_manager.py b/plex_meta_manager.py index c5f56163..f5023aad 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -292,7 +292,7 @@ def start(attrs): logger.separator(f"{err_type.lower().capitalize()} Summary", space=False, border=False) logger.info("") - logger.info(f"Count | Message") + logger.info("Count | Message") logger.separator(f"{logger.separating_character * 5}|", space=False, border=False, side_space=False, left=True) for k, v in Counter(log_data[err_type]).most_common(): logger.info(f"{v:>5} | {k}")