mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-08-01 02:27:27 -04:00
13 lines
266 B
Python
13 lines
266 B
Python
__title__ = "enzyme"
|
|
__version__ = "0.5.2"
|
|
__author__ = "Antoine Bertin"
|
|
__license__ = "MIT"
|
|
__copyright__ = "Copyright 2013 Antoine Bertin"
|
|
|
|
import logging
|
|
from .exceptions import *
|
|
from .mkv import *
|
|
|
|
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|