From 908d711cda6ea1de4cf0aff8dba8419369806f8e Mon Sep 17 00:00:00 2001 From: Wong Yiek Heng Date: Sat, 4 Oct 2025 11:21:35 +0800 Subject: [PATCH] + Fix wrong debug msg for transfer credit --- cm_bot_hal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cm_bot_hal.py b/cm_bot_hal.py index 64624fb..41a3033 100644 --- a/cm_bot_hal.py +++ b/cm_bot_hal.py @@ -178,7 +178,7 @@ class CM_BOT_HAL: raise Exception(f'[Cannot login] {f_username} cannot login.') amount = cm_bot.get_user_credit() - 0.01 if amount <= 0.01: - print(f'[No enough credit] {t_username} do not have enough credit.') + print(f'[No enough credit] {f_username} do not have enough credit.') if cm_bot.transfer_credit(t_username, t_password, amount) == True: print(f'Successfully transfer amount: {amount} from {f_username} to {t_username}') else: