diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-10-31 22:59:35 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-10-31 22:59:35 +0000 |
commit | 3b0c5f8132330d7ebdd468718e8b7aebd27c1524 (patch) | |
tree | 317051a90330235bfde16bf5f2f773908fa2596b | |
parent | c20fa1191bd16e0f57231e10eebaf7a674aa655a (diff) | |
download | portage-3b0c5f8132330d7ebdd468718e8b7aebd27c1524.tar.gz portage-3b0c5f8132330d7ebdd468718e8b7aebd27c1524.tar.bz2 portage-3b0c5f8132330d7ebdd468718e8b7aebd27c1524.zip |
For compatibility, still exit successfully if there are skipped directories.
We can make it more strict later.
svn path=/main/trunk/; revision=14762
-rwxr-xr-x | bin/dohtml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dohtml.py b/bin/dohtml.py index 84bc92f10..421b5e71f 100755 --- a/bin/dohtml.py +++ b/bin/dohtml.py @@ -181,7 +181,7 @@ def main(): eqawarn(["QA Notice: dohtml on directory " + \ "'%s' without recursion option" % x]) - if success and not skipped_directories: + if success: retcode = 0 else: retcode = 1 |