mirror of https://github.com/django/django.git
Fixed #34347 -- Added __all__ to django.contrib.gis.utils.
This commit is contained in:
parent
eacf6b73d8
commit
eafe1468d2
|
@ -1,17 +1,24 @@
|
||||||
"""
|
"""
|
||||||
This module contains useful utilities for GeoDjango.
|
This module contains useful utilities for GeoDjango.
|
||||||
"""
|
"""
|
||||||
from django.contrib.gis.utils.ogrinfo import ogrinfo # NOQA
|
from django.contrib.gis.utils.ogrinfo import ogrinfo
|
||||||
from django.contrib.gis.utils.ogrinspect import mapping, ogrinspect # NOQA
|
from django.contrib.gis.utils.ogrinspect import mapping, ogrinspect
|
||||||
from django.contrib.gis.utils.srs import add_srs_entry # NOQA
|
from django.contrib.gis.utils.srs import add_srs_entry
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"add_srs_entry",
|
||||||
|
"mapping",
|
||||||
|
"ogrinfo",
|
||||||
|
"ogrinspect",
|
||||||
|
]
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# LayerMapping requires DJANGO_SETTINGS_MODULE to be set,
|
# LayerMapping requires DJANGO_SETTINGS_MODULE to be set,
|
||||||
# and ImproperlyConfigured is raised if that's not the case.
|
# and ImproperlyConfigured is raised if that's not the case.
|
||||||
from django.contrib.gis.utils.layermapping import ( # NOQA
|
from django.contrib.gis.utils.layermapping import LayerMapError, LayerMapping
|
||||||
LayerMapError,
|
|
||||||
LayerMapping,
|
__all__ += ["LayerMapError", "LayerMapping"]
|
||||||
)
|
|
||||||
except ImproperlyConfigured:
|
except ImproperlyConfigured:
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue