1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-01-21 04:04:11 +01:00
Files
ebook-converter/ebook_converter/utils/monotonic.py

11 lines
312 B
Python

try:
from time import monotonic
except ImportError:
from ebook_converter.constants_old import plugins
monotonicp, err = plugins['monotonic']
if err:
raise RuntimeError('Failed to load the monotonic module with error: ' + err)
monotonic = monotonicp.monotonic
del monotonicp, err