Skip to content

Commit 72244f5

Browse files
committed
Fix deprecated collection.children to items
1 parent 858fb18 commit 72244f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plexapi/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _loadData(self, data):
7777
@property
7878
@deprecated('use "items" instead')
7979
def children(self):
80-
return self.fetchItems(self.key)
80+
return self.items()
8181

8282
@property
8383
def thumbUrl(self):

0 commit comments

Comments
 (0)