From 5566b0206cec4cc9fd3769ee4dd0fa9644de7029 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 29 Jul 2018 12:18:42 +0300 Subject: Fix: add missing newlines to build log messages --- ick2/actions.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ick2/actions.py b/ick2/actions.py index f174fca..3dce2c5 100644 --- a/ick2/actions.py +++ b/ick2/actions.py @@ -489,7 +489,7 @@ class GitMirrorAction(Action): # pragma: no cover def git_mirror(self, env, sources, mirrors): if not os.path.exists(mirrors): - env.report(None, 'mkdir {}'.format(mirrors)) + env.report(None, 'mkdir {}\n'.format(mirrors)) os.mkdir(mirrors) checked = self.check_sources(sources) @@ -512,12 +512,12 @@ class GitMirrorAction(Action): # pragma: no cover return checked def mirror(self, env, mirrors, name, url): - env.report(None, 'git_mirror: mirrors: {}'.format(mirrors)) - env.report(None, 'git_mirror: name: {}'.format(name)) - env.report(None, 'git_mirror: url: {}'.format(url)) + env.report(None, 'git_mirror: mirrors: {}\n'.format(mirrors)) + env.report(None, 'git_mirror: name: {}\n'.format(name)) + env.report(None, 'git_mirror: url: {}\n'.format(url)) dirname = os.path.join(mirrors, name) - env.report(None, 'git_mirror: dirname: {}'.format(dirname)) + env.report(None, 'git_mirror: dirname: {}\n'.format(dirname)) if os.path.exists(dirname): argv = ['git', 'remote', 'update', '--prune'] -- cgit v1.2.1