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>
This commit is contained in:
Stefan Tatschner 2016-01-30 14:04:14 +01:00 committed by Allan McRae
parent 5c136d85db
commit cd4a3d03a0
1 changed files with 1 additions and 1 deletions

View File

@ -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) {