Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/change_log/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: Change Log
Python-Markdown Change Log
=========================

July 15, 2022: version 3.4.1 (a bug-fix release).

* Fix an import issue with `importlib.util` (#1274).

July 15, 2022: version 3.4 ([Notes](release-3.4.md)).

May 5, 2022: version 3.3.7 (a bug-fix release).
Expand Down
2 changes: 1 addition & 1 deletion markdown/htmlparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

import re
import importlib
import importlib.util
import sys


Expand Down