Fix typo in library totalSize doc string

This commit is contained in:
JonnyWong16 2020-12-24 09:08:52 -08:00
parent 9916297070
commit 1ce97102cd
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -387,7 +387,7 @@ class LibrarySection(PlexObject):
@property
def totalSize(self):
""" Retruns the total number of item in the library. """
""" Returns the total number of items in the library. """
if self._total_size is None:
part = '/library/sections/%s/all?X-Plex-Container-Start=0&X-Plex-Container-Size=1' % self.key
data = self._server.query(part)