diff --git a/glob/manager_core.py b/glob/manager_core.py index 3992c36b..562811c4 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -367,13 +367,13 @@ def __win_check_git_update(path, do_fetch=False, do_update=False): if do_update: if "CUSTOM NODE PULL: Success" in output: process.wait() - print(f"\rUpdated: {path}") + print(f"\x1b[2K\rUpdated: {path}") return True, True # updated elif "CUSTOM NODE PULL: None" in output: process.wait() return False, True # there is no update else: - print(f"\rUpdate error: {path}") + print(f"\x1b[2K\rUpdate error: {path}") process.wait() return False, False # update failed else: @@ -384,7 +384,7 @@ def __win_check_git_update(path, do_fetch=False, do_update=False): process.wait() return False, True else: - print(f"\rFetch error: {path}") + print(f"\x1b[2K\rFetch error: {path}") print(f"\n{output}\n") process.wait() return False, True