From f40a7f8fbcceb61ead662c6cc69b141fdee246da Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Fri, 18 Feb 2011 07:45:09 -0500 Subject: Fixed the findAll backwards compatibility alias. --- beautifulsoup/element.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'beautifulsoup/element.py') diff --git a/beautifulsoup/element.py b/beautifulsoup/element.py index 726f2e2..39e0e06 100644 --- a/beautifulsoup/element.py +++ b/beautifulsoup/element.py @@ -722,10 +722,8 @@ class Tag(PageElement, Entities): if not recursive: generator = self.children return self._find_all(name, attrs, text, limit, generator, **kwargs) - - # Old names for backwards compatibility. - find_all = find_all - findChildren = find_all + findAll = find_all # BS3 + findChildren = find_all # BS2 #Private methods -- cgit v1.2.3