X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=catalog%2Fswagger%2Fviews.py;h=4739188d259b1adcb5967fb71c40337516eb3d13;hb=78a414334876164ba61f63bed7cc91dc48620fcf;hp=33d0edbe30f3e44c533cc13ebfa8eaab8364a4d4;hpb=5d5d8f38910c9e776a3d38bbeea26e85a08ed177;p=modeling%2Fetsicatalog.git diff --git a/catalog/swagger/views.py b/catalog/swagger/views.py index 33d0edb..4739188 100644 --- a/catalog/swagger/views.py +++ b/catalog/swagger/views.py @@ -21,7 +21,7 @@ from rest_framework.views import APIView class SwaggerJsonView(APIView): def get(self, request): - json_file = os.path.join(os.path.dirname(__file__), 'vfc.catalog.swagger.json') + json_file = os.path.join(os.path.dirname(__file__), 'etsicatalog.swagger.json') f = open(json_file) json_data = json.JSONDecoder().decode(f.read()) f.close()