diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-12-20 02:22:22 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-12-20 02:22:22 +0000 |
commit | ad4c9c5b4611b8544bc6f746e110f6004f53a6a8 (patch) | |
tree | 741b0807a9c5384288b65ae83fa504fcd81b4856 | |
parent | 710bb557cc124fc88aca249b9e938b432a958c01 (diff) | |
download | portage-ad4c9c5b4611b8544bc6f746e110f6004f53a6a8.tar.gz portage-ad4c9c5b4611b8544bc6f746e110f6004f53a6a8.tar.bz2 portage-ad4c9c5b4611b8544bc6f746e110f6004f53a6a8.zip |
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
-rw-r--r-- | pym/portage.py | 8 |
1 files changed, 4 insertions, 4 deletions
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 |