PEP8 and pylint cleanups

This commit is contained in:
Roberto Rosario
2011-04-19 20:30:18 -04:00
parent 4a0b9193c9
commit 5528312872
5 changed files with 44 additions and 50 deletions

View File

@@ -1,9 +1,6 @@
from django.conf.urls.defaults import *
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('dynamic_search.views',
url(r'^search/$', 'search', (), 'search'),
url(r'^results/$', 'results', (), 'results'),
)