summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-02-27 21:27:02 -0800
committerZac Medico <zmedico@gentoo.org>2011-03-01 12:53:03 -0800
commita9312ea163458162af14b864505b14b678fc06b1 (patch)
tree724b8e3c24b26f35403fd5317198c95be4679a2a /pym
parentaa3c16d67e97e0cf970c96b534e29b49240184f3 (diff)
downloadportage-a9312ea163458162af14b864505b14b678fc06b1.tar.gz
portage-a9312ea163458162af14b864505b14b678fc06b1.tar.bz2
portage-a9312ea163458162af14b864505b14b678fc06b1.zip
repoman: warn about calls to prepall and preplib
Diffstat (limited to 'pym')
-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 a05c128fe..566984a51 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -625,7 +625,7 @@ class Eapi4GoneVars(LineCheck):
class PortageInternal(LineCheck):
repoman_check_name = 'portage.internal'
- re = re.compile(r'[^#]*\b(ecompress|ecompressdir|prepalldocs)\b')
+ re = re.compile(r'[^#]*\b(ecompress|ecompressdir|prepall|prepalldocs|preplib)\b')
def check(self, num, line):
"""Run the check on line and return error if there is one"""