mirror of
https://github.com/lazylibrarian/LazyLibrarian.git
synced 2026-01-23 05:08:37 -05:00
10 lines
212 B
Python
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'
|
|
)
|