mirror of
https://github.com/samsonjs/http-cookie.git
synced 2026-03-25 08:55:53 +00:00
Fix an error formatting bug
This commit is contained in:
parent
b1202f959e
commit
44374a7517
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ class HTTP::CookieJar::AbstractStore
|
|||
require 'http/cookie_jar/%s_store' % symbol
|
||||
@@class_map.fetch(symbol)
|
||||
rescue LoadError, IndexError => e
|
||||
raise IndexError, 'cookie store unavailable: %s, error: %s' % symbol.inspect, e.message
|
||||
raise IndexError, 'cookie store unavailable: %s, error: %s' % [symbol.inspect, e.message]
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue