Skip to content

Commit 58b880a

Browse files
authored
Bump version to 0.0.17 (#35)
* Update to the latest html2pdf.js 0.2.2 * Bump version to 0.0.17
1 parent d186f84 commit 58b880a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

html2print/html2pdf_js/html2pdf.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html2print/html2print.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from selenium.webdriver.chrome.service import Service
2020
from webdriver_manager.core.os_manager import ChromeType, OperationSystemManager
2121

22-
__version__ = "0.0.16"
22+
__version__ = "0.0.17"
2323

2424
PATH_TO_HTML2PDF_JS = os.path.join(
2525
os.path.dirname(os.path.join(__file__)), "html2pdf_js", "html2pdf.min.js"
@@ -292,7 +292,7 @@ class Done(Exception):
292292
while True:
293293
logs = driver.get_log("browser") # type: ignore[no-untyped-call]
294294
for entry_ in logs:
295-
if "HTML2PDF4DOC time" in entry_["message"]:
295+
if "[HTML2PDF4DOC] Total time:" in entry_["message"]:
296296
print("success: HTML2PDF completed its job.") # noqa: T201
297297
raise Done
298298
if (datetime.today() - datetime_start).total_seconds() > 60:

submodules/html2pdf

Submodule html2pdf updated 285 files

0 commit comments

Comments
 (0)