From: Zac Medico Date: Wed, 20 Dec 2006 02:22:22 +0000 (-0000) Subject: Add missing newlines to the warning message that's printed when the user has distlock... X-Git-Tag: v2.1.2~263 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ad4c9c5b4611b8544bc6f746e110f6004f53a6a8;p=portage.git Add missing newlines to the warning message that's printed when the user has distlocks enabled together with skiprocheck and the filesystem is readonly. svn path=/main/trunk/; revision=5331 --- diff --git a/pym/portage.py b/pym/portage.py index c41832557..3de43de21 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2073,10 +2073,10 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", if not os.access(mysettings["DISTDIR"],os.W_OK) and fetch_to_ro: if use_locks: - writemsg(red("!!! You are fetching to a read-only filesystem, you should turn locking off"), - noiselevel=-1) - writemsg("!!! This can be done by adding -distlocks to FEATURES in /etc/make.conf", - noiselevel=-1) + writemsg(red("!!! For fetching to a read-only filesystem, " + \ + "locking should be turned off.\n"), noiselevel=-1) + writemsg("!!! This can be done by adding -distlocks to " + \ + "FEATURES in /etc/make.conf\n", noiselevel=-1) # use_locks = 0 # local mirrors are always added