summaryrefslogtreecommitdiffstats
path: root/module/lib/BeautifulSoup.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/lib/BeautifulSoup.py')
-rw-r--r--module/lib/BeautifulSoup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/lib/BeautifulSoup.py b/module/lib/BeautifulSoup.py
index 748e6fe4b..55567f588 100644
--- a/module/lib/BeautifulSoup.py
+++ b/module/lib/BeautifulSoup.py
@@ -1295,7 +1295,7 @@ class BeautifulStoneSoup(Tag, SGMLParser):
"""
nestingResetTriggers = self.NESTABLE_TAGS.get(name)
- isNestable = nestingResetTriggers != None
+ isNestable = nestingResetTriggers is not None
isResetNesting = self.RESET_NESTING_TAGS.has_key(name)
popTo = None
inclusive = True