mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
|
"""bencode.py - `BTL` backwards compatibility support."""
|
||
|
|
||
|
# Compatibility with previous versions:
|
||
|
from .exceptions import BencodeDecodeError as BTFailure # noqa: F401
|
||
|
|
||
|
|
||
|
__all__ = (
|
||
|
'BTFailure'
|
||
|
)
|