From 5a5cfce1b2efa50f3aa4eca850c1751f204e7404 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 19 Aug 2022 08:02:38 -0400 Subject: [PATCH] stage: add missing flush before project prompt Bug: https://crbug.com/gerrit/13223 Change-Id: Ib279d86a52e1035e02d6f7d8f053c3a43e721032 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/343555 Reviewed-by: LaMont Jones Tested-by: Mike Frysinger --- subcmds/stage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/subcmds/stage.py b/subcmds/stage.py index 5f17cb64..bdb72012 100644 --- a/subcmds/stage.py +++ b/subcmds/stage.py @@ -75,6 +75,7 @@ The '%prog' command stages files to prepare the next commit. out.nl() out.prompt('project> ') + out.flush() try: a = sys.stdin.readline() except KeyboardInterrupt: