updated ArrAPI to 1.3.1

This commit is contained in:
meisnate12 2022-01-26 09:27:22 -05:00
parent e8200c367c
commit f041537460
3 changed files with 4 additions and 4 deletions

View file

@ -77,7 +77,7 @@ collection_mode_options = {
}
def tab_new_lines(data):
return str(data).replace("\n", "\n|\t ") if "\n" in str(data) else str(data)
return str(data).replace("\n", "\n ") if "\n" in str(data) else str(data)
def make_ordinal(n):
return f"{n}{'th' if 11 <= (n % 100) <= 13 else ['th', 'st', 'nd', 'rd', 'th'][min(n % 10, 4)]}"

View file

@ -2,8 +2,6 @@ import argparse, logging, os, sys, time
from datetime import datetime
from logging.handlers import RotatingFileHandler
from plexapi.exceptions import NotFound
from plexapi.video import Show, Season
try:
import plexapi, schedule
@ -12,6 +10,8 @@ try:
from modules.config import ConfigFile
from modules.meta import MetadataFile
from modules.util import Failed, NotScheduled
from plexapi.exceptions import NotFound
from plexapi.video import Show, Season
except ModuleNotFoundError:
print("Requirements Error: Requirements are not installed")
sys.exit(0)

View file

@ -1,6 +1,6 @@
PlexAPI==4.9.1
tmdbapis==0.1.8
arrapi==1.3.0
arrapi==1.3.1
lxml==4.7.1
requests==2.27.1
ruamel.yaml==0.17.20