for arg in self._pprovided_args:
msg.append(" " + arg + "\n")
msg.append("\n")
- sys.stderr.write(" ".join(msg))
+ sys.stderr.write("".join(msg))
def calc_changelog(self,ebuildpath,current,next):
current = '-'.join(portage.catpkgsplit(current)[1:])
if self.restrict_fetch_satisfied < self.restrict_fetch:
myoutput.append(bad(" (%s unsatisfied)") % \
(self.restrict_fetch - self.restrict_fetch_satisfied))
- return " ".join(myoutput)
+ return "".join(myoutput)
class MergeTask(object):