mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[14] fix doc error
This commit is contained in:
parent
bf915f7067
commit
765863f6f7
3 changed files with 3 additions and 3 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.18.2-develop13
|
||||
1.18.2-develop14
|
||||
|
|
|
@ -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 `<<collection_name>>` 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 `<<collection_sort>>` is replaced with `Avengers, The` instead of `The Avengers` for that collection.
|
||||
|
||||
Every template call is given these template variables.
|
||||
|
||||
|
|
|
@ -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}")
|
||||
|
|
Loading…
Reference in a new issue