From f7bfd8f037b9f675157b609656cef3b82d1f76c2 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Mon, 12 Aug 2013 12:05:13 -0400 Subject: Fixed incorrect superclass in super() Call. --- bs4/element.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bs4/element.py') diff --git a/bs4/element.py b/bs4/element.py index 2484853..e10e100 100644 --- a/bs4/element.py +++ b/bs4/element.py @@ -1603,5 +1603,5 @@ class ResultSet(list): """A ResultSet is just a list that keeps track of the SoupStrainer that created it.""" def __init__(self, source, result=()): - super(list, self).__init__(result) + super(ResultSet, self).__init__(result) self.source = source -- cgit v1.2.3