Skip to content

Commit

Permalink
compatibility with django-shop-0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Feb 7, 2017
1 parent d06aec1 commit 69ad4f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shop_paypal/modifiers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from datetime import date

from django.utils.translation import ugettext_lazy as _
from shop.modifiers.base import PaymentModifier as PaymentModifierBase
from .payment import PayPalPayment
Expand All @@ -22,7 +22,7 @@ def is_disabled(self, cart):

def add_extra_cart_row(self, cart, request):
from decimal import Decimal
from shop.rest.serializers import ExtraCartRow
from shop.serializers.cart import ExtraCartRow

if not self.is_active(cart) or not self.commision_percentage:
return
Expand Down

0 comments on commit 69ad4f6

Please sign in to comment.