Skip to content

Commit

Permalink
Fix SyntaxWarning: invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmoguy committed Sep 19, 2024
1 parent 0c3dbc1 commit d265f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clib/clib_mininet_test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ def run_tests(
sys.exit(0)
else:
decoded_pcap_logs = []
port_match_re = re.compile(".+\-([0-9]+)-of.cap")
port_match_re = re.compile(r".+\-([0-9]+)-of.cap")
of_pcaps = glob.glob(os.path.join(os.path.join(root_tmpdir, "*"), "*of.cap"))
for of_pcap in of_pcaps:
port_match = port_match_re.match(of_pcap)
Expand Down

0 comments on commit d265f53

Please sign in to comment.