summaryrefslogtreecommitdiff
path: root/beautifulsoup/element.py
diff options
context:
space:
mode:
Diffstat (limited to 'beautifulsoup/element.py')
-rw-r--r--beautifulsoup/element.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/beautifulsoup/element.py b/beautifulsoup/element.py
index c0c28d4..a70813d 100644
--- a/beautifulsoup/element.py
+++ b/beautifulsoup/element.py
@@ -446,7 +446,7 @@ class Tag(PageElement, Entities):
# Set up any substitutions, such as the charset in a META tag.
self.contains_substitutions = builder.set_up_substitutions(self)
- self.can_be_empty_element = (builder.can_be_empty_element(name))
+ self.can_be_empty_element = builder.can_be_empty_element(name)
@property
def is_empty_element(self):