summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/__init__.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-11 22:56:07 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-11 22:56:07 +0000
commit68a1fdbd2d6fc27c23b7241ca41682daec59d058 (patch)
treeabf4c68a68f0639fcadbb04d0e31be5303ea5f02 /pym/_emerge/__init__.py
parentb232f7bb85a9ef1db3fcd37dbac330d1134a05b0 (diff)
downloadportage-68a1fdbd2d6fc27c23b7241ca41682daec59d058.tar.gz
portage-68a1fdbd2d6fc27c23b7241ca41682daec59d058.tar.bz2
portage-68a1fdbd2d6fc27c23b7241ca41682daec59d058.zip
Rename the undocumented --conistent option to --complete-graph and add
some docs. svn path=/main/trunk/; revision=9846
Diffstat (limited to 'pym/_emerge/__init__.py')
-rw-r--r--pym/_emerge/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index eae47628f..a7d397e9b 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -188,7 +188,7 @@ options=[
"--ask", "--alphabetical",
"--buildpkg", "--buildpkgonly",
"--changelog", "--columns",
-"--consistent",
+"--complete-graph",
"--debug", "--deep",
"--digest",
"--emptytree",
@@ -381,7 +381,7 @@ def create_depgraph_params(myopts, myaction):
myparams.discard("recurse")
if "--deep" in myopts:
myparams.add("deep")
- if "--consistent" in myopts:
+ if "--complete-graph" in myopts:
myparams.add("consistent")
return myparams
@@ -2842,7 +2842,7 @@ class depgraph(object):
intially satisfied.
Since this method can consume enough time to disturb users, it is
- currently only enabled by the --consistent option.
+ currently only enabled by the --complete-graph option.
"""
if "consistent" not in self.myparams:
# Skip this to avoid consuming enough time to disturb users.