From 96ecabef0d59e38b424384e915070d67e3ceb83d Mon Sep 17 00:00:00 2001 From: Arfrever Frehtes Taifersar Arahesis Date: Mon, 22 Feb 2010 10:44:23 +0000 Subject: Fix "AttributeError: 'module' object has no attribute 'mappings'". Also fix some typos. svn path=/main/trunk/; revision=15429 --- pym/portage/dbapi/porttree.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index 93f3b411b..51e260102 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -18,6 +18,7 @@ portage.proxy.lazyimport.lazyimport(globals(), ) from portage.cache.cache_errors import CacheError +from portage.cache.mappings import Mapping from portage.const import REPO_NAME_LOC from portage.data import portage_gid, secpass from portage.dbapi import dbapi @@ -127,17 +128,17 @@ class portdbapi(dbapi): _use_mutable = True def _get_settings(self): - warnings.warn("Use portdbapi.settings insead of portdbapi.mysettings", + warnings.warn("Use portdbapi.settings instead of portdbapi.mysettings", DeprecationWarning) return self.settings def _set_settings(self, settings): - warnings.warn("Use portdbapi.settings insead of portdbapi.mysettings", + warnings.warn("Use portdbapi.settings instead of portdbapi.mysettings", DeprecationWarning) self.settings = settings def _del_settings (self): - warnings.warn("Use portdbapi.settings insead of portdbapi.mysettings", + warnings.warn("Use portdbapi.settings instead of portdbapi.mysettings", DeprecationWarning) del self.settings @@ -1243,7 +1244,7 @@ class portagetree(object): pass return myslot -class FetchlistDict(portage.cache.mappings.Mapping): +class FetchlistDict(Mapping): """ This provide a mapping interface to retrieve fetch lists. It's used to allow portage.manifest.Manifest to access fetch lists via a standard -- cgit v1.2.3-1-g7c22