From f773bb444db236b9463911178a9660ef3f75cb20 Mon Sep 17 00:00:00 2001 From: 1marc1 <1marc1@users.noreply.github.com> Date: Fri, 27 Oct 2023 23:45:17 +1100 Subject: [PATCH] Update typo in persist_handlers.py This should fix a typo in the return statement. --- wx/lib/agw/persist/persist_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wx/lib/agw/persist/persist_handlers.py b/wx/lib/agw/persist/persist_handlers.py index d6c3dc2b..02452913 100644 --- a/wx/lib/agw/persist/persist_handlers.py +++ b/wx/lib/agw/persist/persist_handlers.py @@ -1335,7 +1335,7 @@ class TreeCtrlHandler(AbstractHandler): if not root: return [] if self._window.HasFlag(wx.TR_HIDE_ROOT): - return self.GeSelectionStateOfChildren(root) + return self.GetSelectionStateOfChildren(root) else: return self.GetSelectionStateOfItem(root)