diff options
author | Sam James <sam@gentoo.org> | 2021-03-28 08:19:37 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-31 03:02:30 +0100 |
commit | 7115a47b865663585b285250b067fae23da49d9c (patch) | |
tree | b76916687622da16609ae982c8157950da20c63f /eclass/cdrom.eclass | |
parent | user.eclass: fix whitespace in elogs (diff) | |
download | gentoo-7115a47b865663585b285250b067fae23da49d9c.tar.gz gentoo-7115a47b865663585b285250b067fae23da49d9c.tar.bz2 gentoo-7115a47b865663585b285250b067fae23da49d9c.zip |
cdrom.eclass: fix whitespace in elogs
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/cdrom.eclass')
-rw-r--r-- | eclass/cdrom.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 4bbe6aa31759..79f43761452d 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: cdrom.eclass @@ -229,13 +229,13 @@ cdrom_load_next_cd() { if [[ ${showedmsg} -eq 0 ]] ; then if [[ ${CDROM_NUM_CDS} -eq 1 ]] ; then - einfo "Please insert+mount the ${CDROM_NAME:-CD for ${PN}} now !" + einfo "Please insert+mount the ${CDROM_NAME:-CD for ${PN}} now!" else local var="CDROM_NAME_${CDROM_CURRENT_CD}" if [[ -z ${!var} ]] ; then - einfo "Please insert+mount CD #${CDROM_CURRENT_CD} for ${PN} now !" + einfo "Please insert+mount CD #${CDROM_CURRENT_CD} for ${PN} now!" else - einfo "Please insert+mount the ${!var} now !" + einfo "Please insert+mount the ${!var} now!" fi fi showedmsg=1 |