Flush the stdout in the commit command
[stgit] / stgit / commands / commit.py
index ec3de72..8af6651 100644 (file)
@@ -49,9 +49,13 @@ def func(parser, options, args):
     if not applied:
         raise CmdException, 'No patches applied'
 
+    if crt_series.get_protected():
+        raise CmdException, 'This branch is protected.  Commit is not permitted'
+
     crt_head = git.get_head()
 
     print 'Committing %d patches...' % len(applied),
+    sys.stdout.flush()
 
     crt_series.pop_patch(applied[0])
     git.switch(crt_head)