Clean up a bare except where we only expect to catch pcre.error.

This commit is contained in:
Fred Drake 2001-05-11 19:20:17 +00:00
parent 652553192e
commit 31e18291c5
1 changed files with 1 additions and 1 deletions

View File

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