From: Zac Medico Date: Sat, 12 Jan 2008 00:19:19 +0000 (-0000) Subject: Replace hardcoded value with max_desc_len. (trunk r9192) X-Git-Tag: v2.1.4~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da8ce7d234c34683f75b8ba516d3c8090b88804b;p=portage.git Replace hardcoded value with max_desc_len. (trunk r9192) svn path=/main/branches/2.1.2/; revision=9193 --- diff --git a/bin/repoman b/bin/repoman index cecf18e65..fdd57f32c 100755 --- a/bin/repoman +++ b/bin/repoman @@ -170,7 +170,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",