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

Remove unused variable

This commit is contained in:
James Herdman 2012-05-14 15:24:29 -04:00
parent b8044a9942
commit d5a417d29a

View file

@ -112,7 +112,7 @@ module Fog
def signature(params)
string_to_sign = params[:headers]['Date']
signed_string = @hmac.sign(string_to_sign)
signature = Base64.encode64(signed_string).chomp!
Base64.encode64(signed_string).chomp!
end
end
end