From fc4240dcfee5bb3fe19a4e3ae7e0eea3115419f6 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 29 Jul 2010 07:59:54 +0000 Subject: [PATCH] Fixed a couple of misspelled methods svn: r15657 --- src/plugins/sidebar/categorysidebar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/sidebar/categorysidebar.py b/src/plugins/sidebar/categorysidebar.py index 4204c3b4a..52f698dfb 100644 --- a/src/plugins/sidebar/categorysidebar.py +++ b/src/plugins/sidebar/categorysidebar.py @@ -308,7 +308,7 @@ class CategorySidebar(BaseSidebar): """ Switches the page based on drag and drop. """ - self.handlers_block() + self.__handlers_block() if self.viewmanager.notebook.get_current_page() != page_no: self.viewmanager.notebook.set_current_page(page_no) - self.handlers_unblock() + self.__handlers_unblock()