Skip to content

Commit

Permalink
Update urls.py
Browse files Browse the repository at this point in the history
django.conf.urls.defaults will be removed. The functions include(), patterns() and url() plus handler404, handler500, are now available through django.conf.urls .
  • Loading branch information
ikonitas committed May 22, 2013
1 parent 3cc64c4 commit 7f580d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fileupload/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from django.conf.urls.defaults import *
from django.conf.urls import patterns
from fileupload.views import PictureCreateView, PictureDeleteView

urlpatterns = patterns('',
Expand Down

0 comments on commit 7f580d6

Please sign in to comment.