Ticket #11200: 10838.diff

File 10838.diff, 534 bytes (added by ludifan, 15 years ago)

this is the one (sorry for the mess...)

  • django/contrib/gis/maps/google/gmap.py

     
    143143    @property
    144144    def icons(self):
    145145        "Returns a sequence of GIcon objects in this map."
    146         return [marker.icon for marker in self.markers if marker.icon]
     146        return set([marker.icon for marker in self.markers if marker.icon])
    147147
    148148class GoogleMapSet(GoogleMap):
    149149
Back to Top