Skip to content

Commit aaee072

Browse files
committed
Fix indentation
1 parent ca432b7 commit aaee072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html5lib/treebuilders/etree_lxml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def insertCommentInitial(self, data, parent=None):
304304
def insertCommentMain(self, data, parent=None):
305305
if (parent == self.document and
306306
self.document._elementTree.getroot()[-1].tag == comment_type):
307-
warnings.warn("lxml cannot represent adjacent comments beyond the root elements", DataLossWarning)
307+
warnings.warn("lxml cannot represent adjacent comments beyond the root elements", DataLossWarning)
308308
super(TreeBuilder, self).insertComment(data, parent)
309309

310310
def insertRoot(self, token):

0 commit comments

Comments
 (0)