From f9e81d1741f55a65dd361b79a58c0d45b9e530fe Mon Sep 17 00:00:00 2001 From: Raymond Yee Date: Wed, 3 Oct 2012 09:24:04 -0700 Subject: [PATCH] syntax error fix --- payment/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payment/manager.py b/payment/manager.py index 424dd5bb..7eadc79e 100644 --- a/payment/manager.py +++ b/payment/manager.py @@ -37,7 +37,7 @@ class PaymentManager( object ): # Forward to our payment processor mod = __import__("regluit.payment." + module, fromlist=[str(module)]) - return = mod.Processor().ProcessIPN(request) + return mod.Processor().ProcessIPN(request) def update_preapproval(self, transaction): """Update a transaction to hold the data from a PreapprovalDetails on that transaction"""