diff options
-rw-r--r-- | cmd2/history.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/history.py b/cmd2/history.py index fa9edc45..da16285d 100644 --- a/cmd2/history.py +++ b/cmd2/history.py @@ -46,7 +46,7 @@ class HistoryItem(): if verbose: ret_str = self._listformat.format(self.idx, self.raw.rstrip()) if self.raw != self.expanded.rstrip(): - ret_str += self._ex_listformat.format(self.idx, self.expanded.rstrip()) + ret_str += '\n' + self._ex_listformat.format(self.idx, self.expanded.rstrip()) else: if expanded: ret_str = self.expanded.rstrip() |