aboutsummaryrefslogtreecommitdiffstats
path: root/catalog/swagger/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'catalog/swagger/views.py')
-rw-r--r--catalog/swagger/views.py2
1 files changed, 1 insertions, 1 deletions
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()