From 91996e32da3a536d0f825a46ee40858028856297 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 7 Sep 2016 16:21:29 +0300 Subject: [PATCH] Fix url name. --- webshell/__init__.py | 2 +- webshell/urls.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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'), ]