##// END OF EJS Templates
delta-search: fix crash caused by unbound variable...
delta-search: fix crash caused by unbound variable This code path was apparently not tested. This fixes a crash when cloning the Tryton repo.

File last commit:

r51654:2c34c9b6 default
r52402:e7bbeaa4 stable
Show More
__init__.py
9 lines | 294 B | text/x-python | PythonLexer
Raphaël Gomès
thirdparty: vendor tomli...
r51654 """A lil' TOML parser."""
__all__ = ("loads", "load", "TOMLDecodeError")
__version__ = "1.2.3" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
from ._parser import TOMLDecodeError, load, loads
# Pretend this exception was created here.
TOMLDecodeError.__module__ = "tomli"