From b01d808dc9daf5de5a7ca4abc48d1348a09987c4 Mon Sep 17 00:00:00 2001 From: Hellowlol Date: Thu, 16 Apr 2020 01:01:45 +0200 Subject: [PATCH] fix bug --- plexapi/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexapi/library.py b/plexapi/library.py index 4d2e6483..6fd53ebb 100644 --- a/plexapi/library.py +++ b/plexapi/library.py @@ -367,7 +367,7 @@ class LibrarySection(PlexObject): raise def reload(self, key=None): - return self._server.library.section.get(self.title) + return self._server.library.section(self.title) def edit(self, agent=None, **kwargs): """ Edit a library (Note: agent is required). See :class:`~plexapi.library.Library` for example usage.