aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2018-02-08 08:36:59 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2018-02-08 08:36:59 +0800
commita00033f9a14a33496a01654e26e5f1570e33655c (patch)
tree685ce0e59a18428beca1f98444544f2e822dfb95
parent8c1f8d67e295bddcc91095734ca5aad62af7129f (diff)
Refactor vnf urls import
Change-Id: I22f9fe0a816e094964a945339945c71f3434fdee Issue-ID: VFC-714 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r--lcm/ns/vnfs/urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lcm/ns/vnfs/urls.py b/lcm/ns/vnfs/urls.py
index ca0e8df8..5da83678 100644
--- a/lcm/ns/vnfs/urls.py
+++ b/lcm/ns/vnfs/urls.py
@@ -14,8 +14,9 @@
from django.conf.urls import url
from rest_framework.urlpatterns import format_suffix_patterns
-from lcm.ns.vnfs.views import NfView, NfDetailView, NfGrant, LcmNotify, NfScaleView, NfVerifyView, NfVnfmInfoView, \
- NfVimInfoView
+from lcm.ns.vnfs.views import NfView, NfDetailView, NfGrant
+from lcm.ns.vnfs.views import LcmNotify, NfScaleView, NfVerifyView
+from lcm.ns.vnfs.views import NfVnfmInfoView, NfVimInfoView
urlpatterns = [
url(r'^api/nslcm/v1/ns/vnfs$', NfView.as_view()),