Gentoo Archives: gentoo-commits

From: "Mounir Lamouri (volkmar)" <volkmar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13860 - main/trunk/pym/portage
Date: Thu, 30 Jul 2009 20:59:12
Message-Id: E1MWciU-0001t8-55@stork.gentoo.org
1 Author: volkmar
2 Date: 2009-07-30 20:59:09 +0000 (Thu, 30 Jul 2009)
3 New Revision: 13860
4
5 Modified:
6 main/trunk/pym/portage/util.py
7 Log:
8 Updating find_updated_config_files function description
9
10
11 Modified: main/trunk/pym/portage/util.py
12 ===================================================================
13 --- main/trunk/pym/portage/util.py 2009-07-30 20:48:08 UTC (rev 13859)
14 +++ main/trunk/pym/portage/util.py 2009-07-30 20:59:09 UTC (rev 13860)
15 @@ -1293,12 +1293,12 @@
16
17 def find_updated_config_files(target_root, config_protect):
18 """
19 - Return a list of configuration files that needs to be updated.
20 - The list contains tuple organized like this:
21 + Return a tuple of configuration files that needs to be updated.
22 + The tuple contains lists organized like this:
23 [ protected_dir, file_list ]
24 - If the protected config isn't a protected_dir but a procted_file, tuple is:
25 + If the protected config isn't a protected_dir but a procted_file, list is:
26 [ protected_file, None ]
27 - If no configuration files needs to be updated, [] is returned
28 + If no configuration files needs to be updated, None is returned
29 """
30
31 if config_protect: