Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
django-statsd-mozilla / patches / __init__.py
Size: Mime:
from django.conf import settings

try:
    from importlib import import_module
except ImportError:
    from django.utils.importlib import import_module

patches = getattr(settings, 'STATSD_PATCHES', [])

for patch in patches:
    import_module(patch).patch()