Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r14762 - main/trunk/bin
Date: Sat, 31 Oct 2009 22:59:38
Message-Id: E1N4Mv2-0001jM-0p@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-10-31 22:59:35 +0000 (Sat, 31 Oct 2009)
3 New Revision: 14762
4
5 Modified:
6 main/trunk/bin/dohtml.py
7 Log:
8 For compatibility, still exit successfully if there are skipped directories.
9 We can make it more strict later.
10
11
12 Modified: main/trunk/bin/dohtml.py
13 ===================================================================
14 --- main/trunk/bin/dohtml.py 2009-10-31 22:37:19 UTC (rev 14761)
15 +++ main/trunk/bin/dohtml.py 2009-10-31 22:59:35 UTC (rev 14762)
16 @@ -181,7 +181,7 @@
17 eqawarn(["QA Notice: dohtml on directory " + \
18 "'%s' without recursion option" % x])
19
20 - if success and not skipped_directories:
21 + if success:
22 retcode = 0
23 else:
24 retcode = 1