ソースを参照

Fixed broken super call within payment app

master
David Winterbottom 14年前
コミット
4f8fd64406
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      oscar/apps/payment/models.py

+ 1
- 1
oscar/apps/payment/models.py ファイルの表示

@@ -143,7 +143,7 @@ class SourceType(models.Model):
143 143
     def save(self, *args, **kwargs):
144 144
         if not self.code:
145 145
             self.code = slugify(self.name)
146
-        super(AbstractSourceType, self).save(*args, **kwargs)
146
+        super(SourceType, self).save(*args, **kwargs)
147 147
     
148 148
 
149 149
 class Bankcard(models.Model):

読み込み中…
キャンセル
保存