From 182af8090a2285eeeb35763e25de444e0bc1c05d Mon Sep 17 00:00:00 2001 From: usmannasir Date: Fri, 4 Apr 2025 18:45:14 +0500 Subject: [PATCH] fix vhuser in function --- websiteFunctions/website.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websiteFunctions/website.py b/websiteFunctions/website.py index cc6a8f78c..280191367 100755 --- a/websiteFunctions/website.py +++ b/websiteFunctions/website.py @@ -7091,8 +7091,8 @@ StrictHostKeyChecking no }) data_ret = {'status': 1, 'fetchStatus': 1, 'error_message': "None", "sites": sites} - json_data = json.dumps(data_ret) - return HttpResponse(json_data) + json_data = json.dumps(data_ret) + return HttpResponse(json_data) except BaseException as msg: data_ret = {'status': 0, 'fetchStatus': 0, 'error_message': str(msg)}