From fd821740c20e90bebfab0bd97752492851bf3e86 Mon Sep 17 00:00:00 2001 From: Michael Andres Date: Fri, 22 Jun 2012 16:58:14 +0200 Subject: [PATCH] Fix spacing bug in progress bar (bnc#674572) --- src/output/OutNormal.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output/OutNormal.cc b/src/output/OutNormal.cc index 773da6a..72f3153 100644 --- a/src/output/OutNormal.cc +++ b/src/output/OutNormal.cc @@ -264,9 +264,9 @@ void OutNormal::dwnldProgressStart(const zypp::Url & uri) cout << CLEARLN; TermLine outstr( TermLine::SF_CRUSH | SF_EXPAND_IF_TTY, '-' ); - outstr.lhs << _("Retrieving:"); + outstr.lhs << _("Retrieving:") << ' '; if (verbosity() == DEBUG) - outstr.lhs << uri << ' '; + outstr.lhs << uri; else outstr.lhs << zypp::Pathname(uri.getPathName()).basename(); outstr.lhs << ' '; -- 2.7.4