mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-13 11:12:48 +08:00
a430bffe57
- added tld library, so "Common Fixes" mod can detect domain names and won't add spaces after each dot in them. - fix HI_before_colon_noncaps, so it won't remove http: from URLs.
14 lines
344 B
Python
14 lines
344 B
Python
from os.path import dirname
|
|
|
|
__author__ = 'Artur Barseghyan'
|
|
__copyright__ = '2013-2020 Artur Barseghyan'
|
|
__license__ = 'MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later'
|
|
__all__ = (
|
|
'DEBUG',
|
|
'NAMES_LOCAL_PATH_PARENT',
|
|
)
|
|
|
|
# Absolute base path that is prepended to NAMES_LOCAL_PATH
|
|
NAMES_LOCAL_PATH_PARENT = dirname(__file__)
|
|
|
|
DEBUG = False
|