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:
parent
2065e8ffa7
commit
7baeec22cc
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ module Fog
|
||||||
def signature(params)
|
def signature(params)
|
||||||
string_to_sign = params[:headers]['Date']
|
string_to_sign = params[:headers]['Date']
|
||||||
signed_string = @hmac.sign(string_to_sign)
|
signed_string = @hmac.sign(string_to_sign)
|
||||||
signature = Base64.encode64(signed_string).chomp!
|
Base64.encode64(signed_string).chomp!
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue