From 41ad01df855c9cdc58624892b588bfbf33dd5a21 Mon Sep 17 00:00:00 2001 From: a Date: Thu, 29 Oct 2020 21:09:31 +0300 Subject: [PATCH] newline --- xonsh/procs/pipelines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xonsh/procs/pipelines.py b/xonsh/procs/pipelines.py index ed02c8966..de9861361 100644 --- a/xonsh/procs/pipelines.py +++ b/xonsh/procs/pipelines.py @@ -177,7 +177,7 @@ class CommandPipeline: def __repr__(self): s = self.__class__.__name__ + "(\n " s += ",\n ".join(a + "=" + repr(getattr(self, a)) for a in self.attrnames) - s += ")" + s += "\n)" return s def __bool__(self):