mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
Fix a bunch of DeprecationWarnings due to invalid escape sequences
Fixes #1454.
This commit is contained in:
@@ -796,7 +796,7 @@ class FindFiles:
|
||||
if ch == "*":
|
||||
f = f + ".*"
|
||||
elif ch == ".":
|
||||
f = f + "\."
|
||||
f = f + r"\."
|
||||
elif ch == "?":
|
||||
f = f + "."
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user