From: Catalin Marinas Date: Tue, 5 Dec 2006 22:07:24 +0000 (+0000) Subject: Flush the stdout in the commit command X-Git-Tag: v0.12~57 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/0dd3d1af74881c8af788fad114d8ba25779c59de Flush the stdout in the commit command Signed-off-by: Catalin Marinas --- diff --git a/stgit/commands/commit.py b/stgit/commands/commit.py index a3b7277..8af6651 100644 --- a/stgit/commands/commit.py +++ b/stgit/commands/commit.py @@ -55,6 +55,7 @@ def func(parser, options, args): crt_head = git.get_head() print 'Committing %d patches...' % len(applied), + sys.stdout.flush() crt_series.pop_patch(applied[0]) git.switch(crt_head)