summaryrefslogtreecommitdiffstats
path: root/pym/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-02-19 15:49:13 -0800
committerZac Medico <zmedico@gentoo.org>2011-02-19 16:03:46 -0800
commitbcc2a5909fcd877030aa997408c87ee8dd7bb3b6 (patch)
tree4ea09f19d6372e346969738ded96afbb6a4f6a79 /pym/repoman
parent68ca90d75caab59d5a33a8ca4f2dfb7c57474a04 (diff)
downloadportage-bcc2a5909fcd877030aa997408c87ee8dd7bb3b6.tar.gz
portage-bcc2a5909fcd877030aa997408c87ee8dd7bb3b6.tar.bz2
portage-bcc2a5909fcd877030aa997408c87ee8dd7bb3b6.zip
repoman: variable.usedwithhelpers tighten regex
This will fix bug #355621.
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 8f61c07c4..5bf039b99 100644
--- a/pym/repoman/checks.py
+++ b/pym/repoman/checks.py
@@ -333,7 +333,7 @@ class NoOffsetWithHelpers(LineCheck):
helpers """
repoman_check_name = 'variable.usedwithhelpers'
- re = re.compile(r'^[^#]*\b(dodir|dohard|exeinto|insinto|into)\s+"?\$\{?(D|ROOT|ED|EROOT|EPREFIX)\}?.*')
+ re = re.compile(r'^[^#]*\b(dodir|dohard|exeinto|insinto|into)\s+"?\$\{?(D|ROOT|ED|EROOT|EPREFIX)\b.*')
error = errors.NO_OFFSET_WITH_HELPERS
class ImplicitRuntimeDeps(LineCheck):