mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-21 14:50:08 +03:00
Don't skip whitespace when using OX to parse xmlrpc
The defaults changed in OX 2.5.0 and caused new lines to disappear.
This commit is contained in:
parent
ebc165f70f
commit
b79285437a
@ -39,9 +39,11 @@ module OpenNebula
|
||||
alias :start_element :startElement
|
||||
|
||||
def parse(str)
|
||||
|
||||
Ox.sax_parse(self, StringIO.new(str),
|
||||
:symbolize => false,
|
||||
:convert_special => true)
|
||||
:convert_special => true,
|
||||
:skip => false)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user