diff --git a/r2/r2/controllers/ipn.py b/r2/r2/controllers/ipn.py index 7e02777ce..b746d26e7 100644 --- a/r2/r2/controllers/ipn.py +++ b/r2/r2/controllers/ipn.py @@ -687,7 +687,7 @@ class StripeController(GoldPaymentController): charge = event.data.object description = charge.description - passthrough, buyer_name = description.split('-') + passthrough, buyer_name = description.split('-', 1) transaction_id = 'S%s' % charge.id pennies = charge.amount return status, passthrough, transaction_id, pennies