Closed dgreisen-cfpb closed 9 years ago
Have you confirmed that next_match = next_re.match(links) works as expected when links=''?
next_match = next_re.match(links)
links=''
I ran it, and it all worked. the regex does not match an empty string, so the match object will be None.
mike gave his thumbs up.
Have you confirmed that
next_match = next_re.match(links)
works as expected whenlinks=''
?