From 99055d29e692cb2610366ff64713113fd86f12c2 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Sat, 30 May 2026 19:36:37 +0200 Subject: [PATCH] Fix missing status.stop() call when restoring venv (#6781) --- redbot/_update/internal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redbot/_update/internal.py b/redbot/_update/internal.py index 6affb9001..7353ac757 100644 --- a/redbot/_update/internal.py +++ b/redbot/_update/internal.py @@ -467,6 +467,7 @@ def reinstall( common.ICON_ERROR, "Failed to restore old virtual environment." ) else: + status.stop() common.print_with_prefix_column( common.ICON_INFO, "The old virtual environment has been restored." )