Add missing paren

This commit is contained in:
Greg Brockman 2011-05-27 23:54:29 -07:00
parent 24dcd8707e
commit 8d378fdda7
2 changed files with 1 additions and 1 deletions

0
bin/stripe-console Executable file → Normal file
View File

View File

@ -396,7 +396,7 @@ module Stripe
def self.request(method, url, api_key, params=nil, headers={})
api_key ||= @@api_key
raise AuthenticationError.new('No API key provided. (HINT: set your API key using "Stripe.api_key = <API-KEY>". You can generate API keys from the Stripe web interface. See https://stripe.com/api for details, or email support@stripe.com if you have any questions.') unless api_key
raise AuthenticationError.new('No API key provided. (HINT: set your API key using "Stripe.api_key = <API-KEY>". You can generate API keys from the Stripe web interface. See https://stripe.com/api for details, or email support@stripe.com if you have any questions.)') unless api_key
if !File.exists?(@@ssl_bundle_path)
unless @no_bundle