From c7c8f2c2e1054bf3fda43d28fd68d94bfe3b6322 Mon Sep 17 00:00:00 2001 From: lxnay Date: Sun, 26 Oct 2008 15:22:05 +0000 Subject: [PATCH] Entropy/entropyConstants: etpdatabasemissingdepswlfile -> etpdatabasemissingdepsblfile git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2575 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- libraries/entropy.py | 2 +- libraries/entropyConstants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/entropy.py b/libraries/entropy.py index e5ea53d18..17ddf0e3c 100644 --- a/libraries/entropy.py +++ b/libraries/entropy.py @@ -16329,7 +16329,7 @@ class ServerInterface(TextInterface): repo = self.default_repository if branch == None: branch = etpConst['branch'] - return os.path.join(etpConst['server_repositories'][repo]['database_dir'],branch,etpConst['etpdatabasemissingdepswlfile']) + return os.path.join(etpConst['server_repositories'][repo]['database_dir'],branch,etpConst['etpdatabasemissingdepsblfile']) def get_missing_dependencies_blacklist(self, repo = None, branch = None): if repo == None: diff --git a/libraries/entropyConstants.py b/libraries/entropyConstants.py index a36bc9e4a..d2e108c27 100644 --- a/libraries/entropyConstants.py +++ b/libraries/entropyConstants.py @@ -567,7 +567,7 @@ def const_defaultSettings(rootdir): 'etpdatabaseupdatefile': ETP_DBFILE+".repo_updates", # the local/remote database revision file 'etpdatabaselicwhitelistfile': ETP_DBFILE+".lic_whitelist", # the local/remote database revision file 'etpdatabaserevisionfile': ETP_DBFILE+".revision", # the local/remote database revision file - 'etpdatabasemissingdepswlfile': ETP_DBFILE+".missing_deps_whitelist", # missing dependencies white list file + 'etpdatabasemissingdepsblfile': ETP_DBFILE+".missing_deps_blacklist", # missing dependencies white list file 'etpdatabasehashfile': ETP_DBFILE+".md5", # its checksum 'etpdatabasedumphashfilebz2': ETP_DBFILE+".dump.bz2.md5", 'etpdatabasedumphashfilegzip': ETP_DBFILE+".dump.gz.md5",