Gentoo Archives: gentoo-commits

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