Skip to content

Commit

Permalink
Fix Django 1.9 warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
onrik committed Apr 21, 2016
1 parent 5352107 commit aca6be4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webshell/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.conf.urls import patterns, url
from django.conf.urls import url
from .views import execute_script_view

urlpatterns = patterns('',
url(r'^execute/$', execute_script_view, name='execute-script'),
)
urlpatterns = [
url(r'^execute/$', execute_script_view, name='execute'),
]

0 comments on commit aca6be4

Please sign in to comment.