summaryrefslogtreecommitdiffstats
path: root/pym/repoman/errors.py
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-10-01 12:27:45 +0000
committerAlec Warner <antarus@gentoo.org>2007-10-01 12:27:45 +0000
commit06c25cd3f55b72d5c92555e4f3f25af83a19466a (patch)
tree180d99884e5cd1096b4b607fa846f2651bf76108 /pym/repoman/errors.py
parent6116442e81d57fe4c65186f07fe26c5568065b55 (diff)
downloadportage-06c25cd3f55b72d5c92555e4f3f25af83a19466a.tar.gz
portage-06c25cd3f55b72d5c92555e4f3f25af83a19466a.tar.bz2
portage-06c25cd3f55b72d5c92555e4f3f25af83a19466a.zip
Rename checks as the naming was overkill (they are all obviously checks being in the check module), add nesteddie check
svn path=/main/trunk/; revision=7898
Diffstat (limited to 'pym/repoman/errors.py')
-rw-r--r--pym/repoman/errors.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/repoman/errors.py b/pym/repoman/errors.py
index c8734ff4d..8378ed4d8 100644
--- a/pym/repoman/errors.py
+++ b/pym/repoman/errors.py
@@ -9,4 +9,5 @@ CVS_HEADER_ERROR = 'Malformed CVS Header on line: %d'
LEADING_SPACES_ERROR = 'Ebuild contains leading spaces on line: %d'
TRAILING_WHITESPACE_ERROR = 'Trailing whitespace error on line: %d'
READONLY_ASSIGNMENT_ERROR = 'Ebuild contains assignment to read-only variable on line: %d'
-MISSING_QUOTES_ERROR = 'Unquoted Variable on line: %d' \ No newline at end of file
+MISSING_QUOTES_ERROR = 'Unquoted Variable on line: %d'
+NESTED_DIE_ERROR = 'Ebuild calls die in a subshell'