Make error message use same language as others

GSoC/Meterpreter_Web_Console
Matthew Kienow 2018-12-31 16:37:08 -05:00
parent e1c6799076
commit 7b22527f8f
No known key found for this signature in database
GPG Key ID: 40787F8B1EAC6E41
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ module HostServlet
data = data.first if is_single_object?(data, sanitized_params)
set_json_data_response(response: data, includes: includes)
rescue => e
print_error_and_create_response(error: e, message: 'There was an error getting hosts:', code: 500)
print_error_and_create_response(error: e, message: 'There was an error retrieving hosts:', code: 500)
end
}
end