diff options
author | Leonard Richardson <leonardr@segfault.org> | 2021-10-11 17:17:32 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2021-10-11 17:17:32 -0400 |
commit | 6c18f90838426fc121e296d85cc6f5037505c384 (patch) | |
tree | c27c6b2b2e27a5ee3b6449c4895cc4bd8e2191a3 /doc | |
parent | 283a27a0af4c70d91695a146b7a6cbc82dc28098 (diff) |
Removed redundant and nonworking argument from example code. [bug=1946243]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst index c989d8c..67d3648 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1796,7 +1796,7 @@ selectors.:: soup.select("child") # [<ns1:child>I'm in namespace 1</ns1:child>, <ns2:child>I'm in namespace 2</ns2:child>] - soup.select("ns1|child", namespaces=soup.namespaces) + soup.select("ns1|child") # [<ns1:child>I'm in namespace 1</ns1:child>] When handling a CSS selector that uses namespaces, Beautiful Soup |