Skip to content

Commit 33bbf6d

Browse files
committed
fix escape markdown multiple values in a blank
1 parent cbd764e commit 33bbf6d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dtable_events/notification_rules/notification_rules_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ def protect_url(match):
229229
value = re.sub(r'^\s*>\s+', r'\\> ', value) # Initial citation
230230

231231
# 3. restore mentions
232-
for placeholder, value in protect_strs:
233-
value = value.replace(placeholder, value)
232+
for placeholder, place_value in protect_strs:
233+
value = value.replace(placeholder, place_value)
234234

235235
return value
236236

0 commit comments

Comments
 (0)