diff options
author | Leonard Richardson <leonardr@segfault.org> | 2018-07-30 20:19:51 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2018-07-30 20:19:51 -0400 |
commit | 71e6e49af92cc395c1896b845042fced8f6ed6a7 (patch) | |
tree | 19966cc326522e87cd974b51a36098e85927e2a7 /bs4/__init__.py | |
parent | b9d9a035157fea45b17201426f73a200b20814ef (diff) |
Fix an exception when a custom formatter was asked to format a void
element. [bug=1784408]
Diffstat (limited to 'bs4/__init__.py')
-rw-r--r-- | bs4/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/__init__.py b/bs4/__init__.py index ac3c172..8c662f8 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -21,7 +21,7 @@ http://www.crummy.com/software/BeautifulSoup/bs4/doc/ # found in the LICENSE file. __author__ = "Leonard Richardson (leonardr@segfault.org)" -__version__ = "4.6.1" +__version__ = "4.6.2" __copyright__ = "Copyright (c) 2004-2018 Leonard Richardson" __license__ = "MIT" |