From 586a03ef24e2bcb4f350c80991af75af717dc92e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Sun, 18 Apr 2021 16:39:04 +0300 Subject: [PATCH] Fix spelling error for container_start value check --- plexapi/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexapi/library.py b/plexapi/library.py index 99323b403..b06dde039 100644 --- a/plexapi/library.py +++ b/plexapi/library.py @@ -1158,7 +1158,7 @@ def _search(self, key, maxresults, container_start, container_size, **kwargs): container_size=container_size, **kwargs) if not len(subresults): if offset > self._totalViewSize: - log.info("container_start is higher then the number of items in the library") + log.info("container_start is higher than the number of items in the library") results.extend(subresults)