From 1676b8abd902025e2af0bedbe734262d5eaeb7cc Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Mon, 23 Jan 2012 23:24:58 -0600 Subject: [PATCH] Don't truncate status messages by default --- svn2svn/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svn2svn/ui.py b/svn2svn/ui.py index 4e2d838..457bbd8 100644 --- a/svn2svn/ui.py +++ b/svn2svn/ui.py @@ -71,7 +71,7 @@ def status(msg, *args, **kwargs): stream = sys.stderr else: stream = sys.stdout - if kwargs.get('truncate', True) and level != ERROR: + if kwargs.get('truncate', False) and level != ERROR: add_newline = msg.endswith('\n') msglines = msg.splitlines() for no, line in enumerate(msglines): -- 2.43.0