Not sure if I have something configured wrong but when the expiration date 
is being sent to Auth.net it is prepended with the letter b. From what I 
have been able to track down its happening on this line
    cartridge/shop/payment/authorizenet.py
    'x_exp_date': (data['card_expiry_month'] + "/" + 
data['card_expiry_year']),

if I change it to "%s/%s" % (data['card_expiry_month'],data[
'card_expiry_year']) it works.

Thoughts?

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to