1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

updated base request parser to not eagerly strip return data

This commit is contained in:
bdorry 2011-04-01 11:08:28 -04:00
parent 8790513231
commit f195be7d75

View file

@ -15,8 +15,8 @@ module Fog
end end
def characters(string) def characters(string)
@value ||= '' @value ||= string
@value << string.strip @value || ''
end end
def start_element(name, attrs = []) def start_element(name, attrs = [])