Skip to content

Commit

Permalink
build: Remove newlines in task description
Browse files Browse the repository at this point in the history
  • Loading branch information
cawka committed Mar 15, 2018
1 parent 07ea712 commit d8066ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class ns3pcfile_task(Task.Task):
def __str__(self):
"string to display to the user"
tgt_str = ' '.join([a.bldpath() for a in self.outputs])
return 'pcfile: %s\n' % (tgt_str)
return 'pcfile: %s' % (tgt_str)

def runnable_status(self):
return super(ns3pcfile_task, self).runnable_status()
Expand Down
2 changes: 1 addition & 1 deletion waf-tools/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __str__(self):
pipeline = shellcmd.Pipeline()
pipeline.parse(self.generator.command)
cmd = pipeline.get_abbreviated_command()
return 'command (%s): %s%s%s\n' % (cmd, src_str, sep, tgt_str)
return 'command (%s): %s%s%s' % (cmd, src_str, sep, tgt_str)

def _subst_arg(self, arg, direction, namespace):
"""
Expand Down

0 comments on commit d8066ab

Please sign in to comment.