You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python3 migration was not completely done as mentioned in #112. I pushed in some changes and some gateways and integrations still won't work. Can you please confirm that Amazon FPS and PayPal work for you?
I get
ImportError: No module named 'gateway'
When I import billing in Python 3.3. The solution is to replace biling/init.py with
from .gateway import Gateway, get_gateway, GatewayNotConfigured
from .integration import Integration, get_integration, IntegrationNotConfigured
from .utils.credit_card import CreditCard
Everything seems ok. To get Amazon/Paypal to work I also needed to replace init.py inside billing/models to have the right import syntax in Python 3.3
The text was updated successfully, but these errors were encountered: