summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi/porttree.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-09-30 12:08:31 -0700
committerZac Medico <zmedico@gentoo.org>2011-09-30 12:08:31 -0700
commited3b2b43aa329d007f7bb0eb303b3f74e927970a (patch)
treeae00ad2be42dbbebf713c5061bcc93e812fa3e91 /pym/portage/dbapi/porttree.py
parenta72a01746638debe472496bd8fc661992a6ba08b (diff)
downloadportage-ed3b2b43aa329d007f7bb0eb303b3f74e927970a.tar.gz
portage-ed3b2b43aa329d007f7bb0eb303b3f74e927970a.tar.bz2
portage-ed3b2b43aa329d007f7bb0eb303b3f74e927970a.zip
Fix 'authoritative' spelling.
Diffstat (limited to 'pym/portage/dbapi/porttree.py')
-rw-r--r--pym/portage/dbapi/porttree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index ab3824727..911dbb5fe 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -218,7 +218,7 @@ class portdbapi(dbapi):
conf = self.repositories.get_repo_for_location(x)
cache = self._pregen_auxdb[x] = self.metadbmodule(
x, "metadata/cache", filtered_auxdbkeys, readonly=True)
- cache.is_authorative = conf.cache_is_authorative
+ cache.is_authoritative = conf.cache_is_authoritative
try:
cache.ec = self._repo_info[x].eclass_db
except AttributeError:
@@ -444,7 +444,7 @@ class portdbapi(dbapi):
if not eapi:
eapi = '0'
if not (eapi[:1] == '-' and eapi_is_supported(eapi[1:])):
- if auxdb.is_authorative or ( \
+ if auxdb.is_authoritative or ( \
emtime == metadata['_mtime_'] and \
eclass_db.is_eclass_data_valid(metadata['_eclasses_'])):
doregen = False