diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-01-12 00:18:44 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-01-12 00:18:44 +0000 |
commit | 2a3f083716ac0e0fd872cf29178dadefff96c089 (patch) | |
tree | d7272299523511ee2f45bf13ef382d1794e197e0 | |
parent | 53cf1d352f3d33e90c719005d268d6eeef1b9fd3 (diff) | |
download | portage-2a3f083716ac0e0fd872cf29178dadefff96c089.tar.gz portage-2a3f083716ac0e0fd872cf29178dadefff96c089.tar.bz2 portage-2a3f083716ac0e0fd872cf29178dadefff96c089.zip |
Replace hardcoded value with max_desc_len.
svn path=/main/trunk/; revision=9192
-rwxr-xr-x | bin/repoman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman index 675cc847b..6e0b82b7d 100755 --- a/bin/repoman +++ b/bin/repoman @@ -261,7 +261,7 @@ qahelp={ "KEYWORDS.stupid":"Ebuilds that use KEYWORDS=-* instead of package.mask", "LICENSE.missing":"Ebuilds that have a missing or empty LICENSE variable", "DESCRIPTION.missing":"Ebuilds that have a missing or empty DESCRIPTION variable", - "DESCRIPTION.toolong":"DESCRIPTION is over 100 characters", + "DESCRIPTION.toolong":"DESCRIPTION is over %d characters" % max_desc_len, "EAPI.unsupported":"Ebuilds that have an unsupported EAPI version (you must upgrade portage)", "SLOT.missing":"Ebuilds that have a missing or empty SLOT variable", "HOMEPAGE.missing":"Ebuilds that have a missing or empty HOMEPAGE variable", |