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

remove no longer used assignment

This commit is contained in:
Wesley Beary 2009-06-27 22:57:37 -07:00
parent f0dfb5bccb
commit 1f0f2ac412

View file

@ -310,7 +310,6 @@ module Fog
end
end
method = 'POST'
string_to_sign = "POST\n#{@host}\n/\n" << body.chop
hmac = @hmac.update(string_to_sign)
body << "Signature=#{CGI.escape(Base64.encode64(hmac.digest).chomp!).gsub(/\+/, '%20')}"