mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-08 14:54:28 +00:00
[svn r7425] Don't use \b around CUCC
This commit is contained in:
@@ -489,7 +489,7 @@ for area in areas:
|
||||
for (number, cave, locn) in cavelists[area]:
|
||||
# We only check the "oursness" for the first entrance.
|
||||
if cave["Multiple entrances"] in ["", "yes"]:
|
||||
notours = not re.search(r'\bCUCC\b', cave['Explorers'])
|
||||
notours = not re.search(r'CUCC', cave['Explorers'])
|
||||
if notours:
|
||||
htmlfile.write("<tr class=\"notours\">")
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user