From 53a3c0af6ae02cbc76e2e1e638c869dbcc11f773 Mon Sep 17 00:00:00 2001 From: Kory Draughn Date: Fri, 11 Sep 2026 11:58:05 -0400 Subject: [PATCH] [#263] Update default dynamic PEP regex to cover except/finally PEPs --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 044f0e8..8d4f8be 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -94,7 +94,7 @@ const std::string STRING_VALUE_KEY = "STRING_VALUE_KEY"; const std::string IRODS_ERROR_PREFIX = "[iRods__Error__Code:"; const std::string STATIC_PEP_RULE_REGEX = "ac[^ ]*"; -const std::string DYNAMIC_PEP_RULE_REGEX = "[^ ]*pep_[^ ]*_(pre|post)"; +const std::string DYNAMIC_PEP_RULE_REGEX = "[^ ]*pep_[^ ]*_(pre|post|except|finally)"; namespace bp = boost::python;