Skip to content

Commit

Permalink
CR
Browse files Browse the repository at this point in the history
  • Loading branch information
poxip committed Aug 23, 2017
1 parent d316f99 commit 642f05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aa_stripe/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class StripeCoupon(StripeBasicModel):
is_created_at_stripe = models.BooleanField(default=False)

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
super(StripeCoupon, self).__init__(*args, **kwargs)
self._previous_is_deleted = self.is_deleted

def __str__(self):
Expand Down

0 comments on commit 642f05e

Please sign in to comment.