diff options
author | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-30 20:59:09 +0000 |
---|---|---|
committer | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-30 20:59:09 +0000 |
commit | df7c70d16efbe0752670783124914298157618e2 (patch) | |
tree | 28c68dd61d73d5b84e9f8a3735f58d2cff943513 | |
parent | 1b3a2390c537d19f08064d8bbdc52d5fd40a6b78 (diff) | |
download | portage-df7c70d16efbe0752670783124914298157618e2.tar.gz portage-df7c70d16efbe0752670783124914298157618e2.tar.bz2 portage-df7c70d16efbe0752670783124914298157618e2.zip |
Updating find_updated_config_files function description
svn path=/main/trunk/; revision=13860
-rw-r--r-- | pym/portage/util.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/portage/util.py b/pym/portage/util.py index f3e79ba7c..49eec6492 100644 --- a/pym/portage/util.py +++ b/pym/portage/util.py @@ -1293,12 +1293,12 @@ def new_protect_filename(mydest, newmd5=None): def find_updated_config_files(target_root, config_protect): """ - Return a list of configuration files that needs to be updated. - The list contains tuple organized like this: + Return a tuple of configuration files that needs to be updated. + The tuple contains lists organized like this: [ protected_dir, file_list ] - If the protected config isn't a protected_dir but a procted_file, tuple is: + If the protected config isn't a protected_dir but a procted_file, list is: [ protected_file, None ] - If no configuration files needs to be updated, [] is returned + If no configuration files needs to be updated, None is returned """ if config_protect: |