diff --git a/webshell/__init__.py b/webshell/__init__.py index bcde541..9a32c2a 100644 --- a/webshell/__init__.py +++ b/webshell/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 1) +VERSION = (0, 1, 2) def get_version(): diff --git a/webshell/urls.py b/webshell/urls.py index b0d6b44..23d6f92 100644 --- a/webshell/urls.py +++ b/webshell/urls.py @@ -2,5 +2,5 @@ from .views import execute_script_view urlpatterns = [ - url(r'^execute/$', execute_script_view, name='execute'), + url(r'^execute/$', execute_script_view, name='execute-script'), ]