mirror of
https://github.com/django/django.git
synced 2024-11-29 22:56:46 +01:00
Fixed a string detection in ogrinspect.py
This commit is contained in:
parent
c91667338a
commit
6140795150
@ -123,7 +123,7 @@ def _ogrinspect(data_source, model_name, geom_name='geom', layer_key=0, srid=Non
|
||||
to the given data source. See the `ogrinspect` docstring for more details.
|
||||
"""
|
||||
# Getting the DataSource
|
||||
if isinstance(data_source, str):
|
||||
if isinstance(data_source, six.string_types):
|
||||
data_source = DataSource(data_source)
|
||||
elif isinstance(data_source, DataSource):
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user