mirror of
https://github.com/gryf/ebook-converter.git
synced 2026-01-02 00:22:25 +01:00
11 lines
308 B
Python
11 lines
308 B
Python
try:
|
|
from time import monotonic
|
|
except ImportError:
|
|
from ebook_converter.constants 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
|