mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
8 lines
129 B
Python
8 lines
129 B
Python
|
"""bencode.py - encoder + decode exceptions."""
|
||
|
|
||
|
|
||
|
class BencodeDecodeError(Exception):
|
||
|
"""Bencode decode error."""
|
||
|
|
||
|
pass
|