From 8d378fdda71bbcd5b14f7a834080e21f805e188c Mon Sep 17 00:00:00 2001 From: Greg Brockman Date: Fri, 27 May 2011 23:54:29 -0700 Subject: [PATCH] Add missing paren --- bin/stripe-console | 0 lib/stripe.rb | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 bin/stripe-console diff --git a/bin/stripe-console b/bin/stripe-console old mode 100755 new mode 100644 diff --git a/lib/stripe.rb b/lib/stripe.rb index 4033a5cd..478cb8a5 100644 --- a/lib/stripe.rb +++ b/lib/stripe.rb @@ -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 = ". 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 = ". 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