change get_raw replacement regex from />/ to /=>/ for output XML

This commit is contained in:
Cherdancev Evgeni 2015-10-13 13:54:29 +06:00
parent c7348b2b36
commit c7dcc272c3
1 changed files with 13 additions and 13 deletions

View File

@ -65,7 +65,7 @@ module Fog
ret = "RAW=#{raw}\n"
ret.gsub!(/\{/, '[')
ret.gsub!(/\}/, ']')
ret.gsub!(/>/,'')
ret.gsub!(/=>/,'=')
ret
end