diff options
author | Stefan Tatschner <rumpelsepp@sevenbyte.org> | 2016-01-30 14:04:14 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2016-02-23 03:56:52 +0100 |
commit | cd4a3d03a014f0959b42b652051007e5a47fe6e2 (patch) | |
tree | 9c1766b2b369517b8b6aac68e8682f32ae1c927d | |
parent | 5c136d85dbf42e56f2ef0e6a60288669bd806c38 (diff) | |
download | pacman-cd4a3d03a014f0959b42b652051007e5a47fe6e2.tar.gz pacman-cd4a3d03a014f0959b42b652051007e5a47fe6e2.tar.xz |
Fix inconsistent status messages
This patch fixes an inconsistency in the status messages.
:: Proceed with installation? [Y/n]
:: Retrieving packages ... <--- Space before "...".
blas-3.6.0-4-x86_64
cblas-3.6.0-4-x86_64
lapack-3.6.0-4-x86_64
(3/3) checking keys in keyring
(3/3) checking package integrity
(3/3) loading package files
(3/3) checking for file conflicts
(3/3) checking available disk space
:: Processing package changes... <--- No space before "..."
(1/3) upgrading blas
(2/3) upgrading cblas
(3/3) upgrading lapack
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | src/pacman/callback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c index cb3db109..1e1a4cd9 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -288,7 +288,7 @@ void cb_event(alpm_event_t *event) fputs(event->scriptlet_info.line, stdout); break; case ALPM_EVENT_RETRIEVE_START: - colon_printf(_("Retrieving packages ...\n")); + colon_printf(_("Retrieving packages...\n")); break; case ALPM_EVENT_DISKSPACE_START: if(config->noprogressbar) { |