Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0eaa5e

Browse files
authored
Fix copy button with multiple tracebacks (#240)
1 parent 14e4606 commit d0eaa5e

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)