From 30e5cfa6c706c02e9920deda543b7faf29733e0b Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 27 Oct 2011 10:22:33 -0700 Subject: LocationsManager: portage-1-compat warnings.warn --- pym/portage/package/ebuild/_config/LocationsManager.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pym/portage/package/ebuild/_config/LocationsManager.py b/pym/portage/package/ebuild/_config/LocationsManager.py index 92c838cc1..a4098ba7b 100644 --- a/pym/portage/package/ebuild/_config/LocationsManager.py +++ b/pym/portage/package/ebuild/_config/LocationsManager.py @@ -6,6 +6,8 @@ __all__ = ( ) import io +import warnings + from portage import os, eapi_is_supported, _encodings, _unicode_encode from portage.const import CUSTOM_PROFILE_PATH, GLOBAL_CONFIG_PATH, \ PROFILE_PATH, USER_CONFIG_PATH @@ -120,7 +122,7 @@ class LocationsManager(object): offenders = sorted(x for x in offenders if os.path.isdir(os.path.join(currentPath, x))) if offenders: - writemsg((_("Profile '%(profile_path)s' in repository " + warnings.warn((_("Profile '%(profile_path)s' in repository " "'%(repo_name)s' is implicitly using 'portage-1' profile format, but " "the repository profiles are not marked as that format. This will break " "in the future. Please either convert the following paths " @@ -128,7 +130,7 @@ class LocationsManager(object): "repositories layout.conf. Files: '%(files)s'\n") % dict(profile_path=currentPath, repo_name=repo_loc, files=', '.join(offenders))), - noiselevel=-1) + ) parentsFile = os.path.join(currentPath, "parent") eapi_file = os.path.join(currentPath, "eapi") -- cgit v1.2.3-1-g7c22