From 9ab3c5becc9bedc7534eb691aa4028755ed1beff Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sat, 15 Mar 2014 22:27:33 +0100 Subject: [PATCH] print_buildlog: don't strip tabs --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index c70f171c..014b629e 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5386,7 +5386,7 @@ def print_buildlog(apiurl, prj, package, repository, arch, offset=0, strip_time= # to protect us against control characters import string all_bytes = string.maketrans('', '') - remove_bytes = all_bytes[:10] + all_bytes[11:32] # accept newlines + remove_bytes = all_bytes[:9] + all_bytes[11:32] # accept tabs and newlines query = {'nostream' : '1', 'start' : '%s' % offset} if last: