Clean up a bare except where we only expect to catch pcre.error.
This commit is contained in:
parent
652553192e
commit
31e18291c5
|
@ -364,7 +364,7 @@ class RegexObject:
|
|||
# See if repl contains group references
|
||||
try:
|
||||
repl = pcre_expand(_Dummy, repl)
|
||||
except:
|
||||
except error:
|
||||
m = MatchObject(self, source, 0, end, [])
|
||||
repl = lambda m, repl=repl, expand=pcre_expand: expand(m, repl)
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue