diff options
Diffstat (limited to 'Lib/pre.py')
-rw-r--r-- | Lib/pre.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pre.py b/Lib/pre.py index 357e0a658c..1665660bd8 100644 --- a/Lib/pre.py +++ b/Lib/pre.py @@ -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: |