Files
LazyLibrarian/lib/bencode/BTL.py
2018-01-27 22:57:42 +01:00

10 lines
212 B
Python

"""bencode.py - `BTL` backwards compatibility support."""
# Compatibility with previous versions:
from lib.bencode.exceptions import BencodeDecodeError as BTFailure # noqa: F401
__all__ = (
'BTFailure'
)