1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

L #4132: Fix linting (#4225)

Co-authored-by: Tino Vázquez <cvazquez@opennebula.systems>
This commit is contained in:
Alejandro Huertas Herrero 2020-02-20 15:38:09 +01:00 committed by GitHub
parent 3f380d72c6
commit e3831347c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -528,9 +528,9 @@ post '/service_template/:id/action' do
# remove escapes
networks_values.each do |net|
net.map do |key, value|
value.map do |key1, value1|
value1.gsub!("\\\"", '')
net.map do |_, value|
value.map do |_, value1|
value1.gsub!('\\"', '')
end
end
end