diff options
author | Alec Warner <antarus@gentoo.org> | 2007-10-01 10:26:09 +0000 |
---|---|---|
committer | Alec Warner <antarus@gentoo.org> | 2007-10-01 10:26:09 +0000 |
commit | 03f423b324210ff5044905920c7ab73661468d5d (patch) | |
tree | d6fc346f469911cde2f9bf5c7e570aa4b636a355 | |
parent | 82f4e2a922429111e3abfb6bb2849fcc1b4ec134 (diff) | |
download | portage-03f423b324210ff5044905920c7ab73661468d5d.tar.gz portage-03f423b324210ff5044905920c7ab73661468d5d.tar.bz2 portage-03f423b324210ff5044905920c7ab73661468d5d.zip |
keep old repoman names so we don't confuse people
svn path=/main/trunk/; revision=7896
-rw-r--r-- | pym/repoman/checks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 89f041d8e..ac79b990e 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -149,7 +149,7 @@ class EbuildQuoteCheck(ContentCheck): class EbuildAssignmentCheck(ContentCheck): """Ensure ebuilds don't assign to readonly variables.""" - repoman_check_name = 'ebuild.majorsyn' + repoman_check_name = 'variable.readonly' readonly_assignment = re.compile(r'^\s*(export\s+)?(A|CATEGORY|P|PV|PN|PR|PVR|PF|D|WORKDIR|FILESDIR|FEATURES|USE)=') line_continuation = re.compile(r'([^#]*\S)(\s+|\t)\\$') |