summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'pym/repoman')
-rw-r--r--pym/repoman/checks.py2
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)\\$')