mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 22:24:12 +00:00
fix bug
This commit is contained in:
parent
e0d5a873e1
commit
b01d808dc9
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ class LibrarySection(PlexObject):
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def reload(self, key=None):
|
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):
|
def edit(self, agent=None, **kwargs):
|
||||||
""" Edit a library (Note: agent is required). See :class:`~plexapi.library.Library` for example usage.
|
""" Edit a library (Note: agent is required). See :class:`~plexapi.library.Library` for example usage.
|
||||||
|
|
Loading…
Reference in a new issue