Fixed a geographic sitemaps regression introduced in r13876.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13879 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
efac677add
commit
ea07fe7a3f
|
@ -93,7 +93,7 @@ def kml(request, label, model, field_name=None, compress=False, using=DEFAULT_DB
|
|||
else:
|
||||
qs = klass._default_manager.using(using).all()
|
||||
for mod in qs:
|
||||
mod.kml = getattr(mod, field_name).kml)
|
||||
mod.kml = getattr(mod, field_name).kml
|
||||
placemarks.append(mod)
|
||||
|
||||
# Getting the render function and rendering to the correct.
|
||||
|
|
Loading…
Reference in New Issue