latent spelling error

pull/1/head
eric 2013-11-24 18:44:40 -05:00
parent fbf0f60a3f
commit 18f104c210
1 changed files with 2 additions and 2 deletions

View File

@ -716,7 +716,7 @@ class Processor(baseprocessor.Processor):
return
# make sure we are dealing with a stripe transaction
if transaction.host <> PAYMENT_HOST_STRIPE:
raise StripeLibError("transaction.host {0} is not the expected {1}".format(transaction.host, PAYMENT_HOST_STRIPE))
raise StripelibError("transaction.host {0} is not the expected {1}".format(transaction.host, PAYMENT_HOST_STRIPE))
sc = StripeClient()
@ -771,7 +771,7 @@ class Processor(baseprocessor.Processor):
else:
# nothing to charge
raise StripeLibError("No customer id available to charge for transaction {0}".format(transaction.id), None)
raise StripelibError("No customer id available to charge for transaction {0}".format(transaction.id), None)
def api(self):