Changed example regex
to make it a bit more apparent that the regex is to be used with re.match and not re.search
This commit is contained in:
parent
c591d6fe4b
commit
fba9ddb8f7
|
@ -1,2 +1,3 @@
|
|||
'ns[0-9]?.mnt.se$':
|
||||
# Note that the matching is done with re.match()
|
||||
'^ns[0-9]?.mnt.se$':
|
||||
nameserver:
|
||||
|
|
Loading…
Reference in a new issue