7 lines
160 B
Python
7 lines
160 B
Python
from django.conf import settings
|
|
|
|
REPLACEMENTS = {
|
|
}
|
|
add_replacements = getattr(settings, 'EXTENSIONS_REPLACEMENTS', {})
|
|
REPLACEMENTS.update(add_replacements)
|
|
|