]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/robotstxt/urls.py
Tried to fix OSQA 266, Emails sent from the cron job are not using the website locale.
[osqa.git] / forum_modules / robotstxt / urls.py
1 from django.conf.urls.defaults import *
2 from django.http import  HttpResponse
3 import settings
4
5 urlpatterns = patterns('',
6     (r'^robots.txt$',  lambda r: HttpResponse(settings.ROBOTS_FILE.value)),
7 )