summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bs4/element.py2
1 files changed, 1 insertions, 1 deletions
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