~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: Janos Gyerik
  • Date: 2012-04-03 19:38:36 UTC
  • Revision ID: janos@axiom-20120403193836-13osl5uif18pvaz5
pyflakes fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from django.conf.urls.defaults import *
 
1
from django.conf.urls.defaults import patterns, include
2
2
 
3
3
from django.contrib import admin
4
4
admin.autodiscover()
14
14
 
15
15
try:
16
16
    import openid
 
17
    openid.VERSION
17
18
    urlpatterns += patterns('',
18
19
            (r'^openid/', include('django_openid_auth.urls')),
19
20
            )