summaryrefslogtreecommitdiffstats
path: root/django/validationmanager/urls.py
diff options
context:
space:
mode:
authorEdan Binshtok <eb578m@intl.att.com>2017-11-19 11:42:55 +0200
committerEdan Binshtok <eb578m@intl.att.com>2017-11-19 11:43:15 +0200
commita9ef6f094a2bcf1fd7a0b7c2aaf814841db558ec (patch)
tree81a3f8436f9e6af07c3070c74f3a0543c2ca5eff /django/validationmanager/urls.py
parentc169d08d437ccb62fd79ade759077b874f00b1c3 (diff)
Pep8 more fixes
Update base files to pass pep8 strict standarts. Issue-ID: VVP-25 Change-Id: If9ef80abf7fbc33ea181dfc2eb73c27ddd6ddc3e Signed-off-by: Edan Binshtok <eb578m@intl.att.com>
Diffstat (limited to 'django/validationmanager/urls.py')
-rw-r--r--django/validationmanager/urls.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/django/validationmanager/urls.py b/django/validationmanager/urls.py
index 5c6edb8..50ec791 100644
--- a/django/validationmanager/urls.py
+++ b/django/validationmanager/urls.py
@@ -1,5 +1,5 @@
-#
-# ============LICENSE_START==========================================
+#
+# ============LICENSE_START==========================================
# org.onap.vvp/engagementmgr
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
@@ -38,12 +38,15 @@
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
from django.conf.urls import url
-from validationmanager.rest import git_webhook_endpoint, jenkins_webhook_endpoint
+from validationmanager.rest import git_webhook_endpoint,\
+ jenkins_webhook_endpoint
urlpatterns = [
url(r'^hook/test-complete(?:/(?P<auth_token>[^/]+)/?)?$',
- jenkins_webhook_endpoint.JenkinsWebhookEndpoint.as_view(), name='jenkins-notification-endpoint'),
+ jenkins_webhook_endpoint.JenkinsWebhookEndpoint.as_view(),
+ name='jenkins-notification-endpoint'),
url(r'^hook/git-push(?:/(?P<auth_token>[^/]+)/?)?$',
- git_webhook_endpoint.GitWebhookEndpoint.as_view(), name='git-push-endpoint'),
+ git_webhook_endpoint.GitWebhookEndpoint.as_view(),
+ name='git-push-endpoint'),
]