summaryrefslogtreecommitdiffstats
path: root/pym/repoman/errors.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-05 06:49:14 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-05 06:49:14 +0000
commitd96f9a7b23dbe2bf55289e5cd05484427758ee0b (patch)
tree5249d3a331cdc40afb8153aaab2c755b1d3e03f8 /pym/repoman/errors.py
parentd3aa10fe409faeeb765c00c82fa6fc36dcfb2073 (diff)
downloadportage-d96f9a7b23dbe2bf55289e5cd05484427758ee0b.tar.gz
portage-d96f9a7b23dbe2bf55289e5cd05484427758ee0b.tar.bz2
portage-d96f9a7b23dbe2bf55289e5cd05484427758ee0b.zip
Fix 'TypeError: not all arguments converted during string formatting'
issues with the EbuildNestedDie check. svn path=/main/trunk/; revision=8429
Diffstat (limited to 'pym/repoman/errors.py')
-rw-r--r--pym/repoman/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/repoman/errors.py b/pym/repoman/errors.py
index 3b3b3c179..d1aad1d8a 100644
--- a/pym/repoman/errors.py
+++ b/pym/repoman/errors.py
@@ -10,5 +10,5 @@ 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'
-NESTED_DIE_ERROR = 'Ebuild calls die in a subshell'
+NESTED_DIE_ERROR = 'Ebuild calls die in a subshell on line: %d'
REDUNDANT_CD_S_ERROR = 'Ebuild has redundant cd ${S} statement on line: %d'