Skip to content

Commit 39f24dd

Browse files
committed
Fix copy button with multiple tracebacks
1 parent 14e4606 commit 39f24dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python_docs_theme/static/copybutton.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function getCopyableText(rootElement) {
88
for (const el of tracebacks) {
99
while (
1010
el.nextSibling &&
11-
(el.nextSibling.nodeType !== Node.DOCUMENT_NODE ||
11+
(el.nextSibling.nodeType !== Node.ELEMENT_NODE ||
1212
!el.nextSibling.matches(".gp, .go"))
1313
) {
1414
el.nextSibling.remove()

0 commit comments

Comments
 (0)