:art: Add coupon_expire_at

huangqimin001 3 年之前
父节点
当前提交
e94860686f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      commands/management/commands/once_refresh_user_coupon_expired_time.py

+ 1 - 1
commands/management/commands/once_refresh_user_coupon_expired_time.py

@@ -25,7 +25,7 @@ class Command(CompatibilityBaseCommand):
25 25
                     continue
26 26
 
27 27
                 try:
28
-                    coupon = CouponInfo.objects.get(coupon_id=coupon_id)
28
+                    CouponInfo.objects.get(coupon_id=coupon_id)
29 29
                 except CouponInfo.DoesNotExist:
30 30
                     continue
31 31