test: Add missing re.escape() to feature_addrman test

This commit is contained in:
MarcoFalke
2021-09-27 09:56:41 +02:00
parent 58c25bdcea
commit fa01f22e6e
2 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@
"""Test addrman functionality"""
import os
import re
import struct
from test_framework.messages import ser_uint256, hash256
@ -56,7 +57,7 @@ class AddrmanTest(BitcoinTestFramework):
init_error = lambda reason: (
f"Error: Invalid or corrupt peers.dat \\({reason}\\). If you believe this "
f"is a bug, please report it to {self.config['environment']['PACKAGE_BUGREPORT']}. "
f'As a workaround, you can move the file \\("{peers_dat}"\\) out of the way \\(rename, '
f'As a workaround, you can move the file \\("{re.escape(peers_dat)}"\\) out of the way \\(rename, '
"move, or delete\\) to have a new one created on the next start."
)