update php apache module workaround

This commit is contained in:
simonLeary42 2025-03-31 16:50:44 -04:00 committed by GitHub
parent 70b5e362f9
commit 593bf7c8fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -194,7 +194,7 @@ def create_apache_identifier(name):
# re expressions to extract subparts of names
re_workarounds = [
('php', re.compile(r'^(php\d)\.')),
('php', re.compile(r'^(php)[\d\.]+')),
]
for a2enmod_spelling, module_name in text_workarounds: