It seems like layermapping.py is not seeing the data as an instance of six.string_types and therefore doesn't build a GDAL Datasource from it.
Line 92-96 of contrib\gis\utils\layermaping.py if isinstance(data, six.string_types): self.ds = DataSource(data, encoding=encoding) else: self.ds = data self.layer = self.ds[layer] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/f34d4681-cd13-4b6b-a2d1-cff4d252251e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

