}
    mapimage = MapImage.all().filter('user ='******'s just a nightmare.
  mapimages = MapImage.all().order('last_updated').fetch(10)
  for mapimage in mapimages:
    if not mapimage.update_count:
      mapimage.update_count = 0
      mapimage.put()
    userinfo = UserInfo.all().filter('user = ', mapimage.user).get()
    if not userinfo:
      #TODO consider deleting these maps?
      mapimage.last_updated = datetime.now()