summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-07-29 12:18:42 +0300
committerLars Wirzenius <liw@liw.fi>2018-07-29 12:18:42 +0300
commit5566b0206cec4cc9fd3769ee4dd0fa9644de7029 (patch)
tree18e1de541f12a6bd126df8a5531818278bf6e806
parent878461bb6dcd2c70736da9f7417e2a930af13a2b (diff)
downloadick2-5566b0206cec4cc9fd3769ee4dd0fa9644de7029.tar.gz
Fix: add missing newlines to build log messages
-rw-r--r--ick2/actions.py10
1 files 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']