summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-02-22 10:44:23 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-02-22 10:44:23 +0000
commit96ecabef0d59e38b424384e915070d67e3ceb83d (patch)
treefeae95f280a9337fcf042aefe98c86177943ecf6
parentba4584388f0d20810542a17218ff0346ec6357df (diff)
downloadportage-96ecabef0d59e38b424384e915070d67e3ceb83d.tar.gz
portage-96ecabef0d59e38b424384e915070d67e3ceb83d.tar.bz2
portage-96ecabef0d59e38b424384e915070d67e3ceb83d.zip
Fix "AttributeError: 'module' object has no attribute 'mappings'".
Also fix some typos. svn path=/main/trunk/; revision=15429
-rw-r--r--pym/portage/dbapi/porttree.py9
1 files 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