[svn r7425] Don't use \b around CUCC

This commit is contained in:
olly
2006-06-26 23:16:06 +02:00
parent aab31cfd8f
commit f3b630ad22
5 changed files with 34 additions and 34 deletions

View File

@@ -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: