diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2021-05-20 11:28:34 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2021-05-20 11:28:34 -0400 |
commit | abf5f62cb35d38a4bf98f49cc77dc365544ff2ab (patch) | |
tree | 57c95d021dcbde85cd8bf3090cb55c3521568f6a | |
parent | 01d334f81b8b3d29c034d559f93339a274efb199 (diff) | |
download | b4-abf5f62cb35d38a4bf98f49cc77dc365544ff2ab.tar.gz |
Minor visual tweak in output
Group patch output inside the indented ---, and all processing messages
before the indent.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | b4/__init__.py | 1 | ||||
-rw-r--r-- | b4/mbox.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index 443b0cf..dad93e8 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -585,6 +585,7 @@ class LoreSeries: at = 1 msgs = list() + logger.info('---') for lmsg in self.patches[1:]: if cherrypick is not None: if at not in cherrypick: @@ -58,7 +58,6 @@ def make_am(msgs, cmdargs, msgid): logger.info('Will use the latest revision: v%s', lser.revision) logger.info('You can pick other revisions using the -vN flag') - logger.info('---') if cmdargs.cherrypick: cherrypick = list() if cmdargs.cherrypick == '_': |