From 2862a17a12865b249d2955ae97318efdcdee5224 Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Tue, 2 Jul 2024 22:36:07 -0700 Subject: [PATCH] Fix. --- comfy_cli/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_cli/update.py b/comfy_cli/update.py index 0cd64b1..362121c 100644 --- a/comfy_cli/update.py +++ b/comfy_cli/update.py @@ -53,7 +53,7 @@ def notify_update(current_version: str, newer_version: str): if sys.platform == "win32": bell = "" # windows cannot display bell emoji character. - message.replace(":sparkles:", "") + message = message.replace(":sparkles:", "") else: bell = ":bell:"