From 9655dcac83c7655d1184fc345d26c97daeba789b Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 16 Dec 2025 21:20:34 +0800 Subject: [PATCH] bugfix --- unipay/providers/transfer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unipay/providers/transfer.py b/unipay/providers/transfer.py index 549d0c4..08050b8 100644 --- a/unipay/providers/transfer.py +++ b/unipay/providers/transfer.py @@ -102,7 +102,7 @@ class TransferPay(Gateway): def gen_mailcode(self): c = '1' - for range(6): + for i in range(6): c += randint(0,9) return c