update
This commit is contained in:
parent
4ddd123f51
commit
6f321e5a1f
@ -75,9 +75,8 @@ for movie in MovieCollectionFinal:
|
|||||||
nameLength = len(movie)
|
nameLength = len(movie)
|
||||||
coll.collectionTitle = movie.name[:nameLength - 13]
|
coll.collectionTitle = movie.name[:nameLength - 13]
|
||||||
coll.collectionId = movie.id
|
coll.collectionId = movie.id
|
||||||
print(f"Collection {coll.collectionTitle} with Id: {coll.collectionId} has been added")
|
|
||||||
|
|
||||||
print(f":: {dt.now().strftime('%d-%m-%Y %H:%M:%S')} :: Checking Yaml File...")
|
print(f":: {dt.now().strftime('%d-%m-%Y %H:%M:%S')} :: CollectionUpdater :: Checking Yaml File...")
|
||||||
|
|
||||||
with open(Config.PlexAutoCollectionConfigFilePath, 'r') as f:
|
with open(Config.PlexAutoCollectionConfigFilePath, 'r') as f:
|
||||||
try:
|
try:
|
||||||
@ -85,5 +84,5 @@ with open(Config.PlexAutoCollectionConfigFilePath, 'r') as f:
|
|||||||
except yaml.YAMLError as exc:
|
except yaml.YAMLError as exc:
|
||||||
print(exc)
|
print(exc)
|
||||||
|
|
||||||
for collection in currentYaml.items():
|
for collection, movies in currentYaml.items():
|
||||||
print(collection)
|
print(movies)
|
Loading…
x
Reference in New Issue
Block a user