aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py')
-rwxr-xr-xtests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py b/tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py
index 84b2470c8f9..2c878606488 100755
--- a/tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py
+++ b/tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py
@@ -369,7 +369,7 @@ def _alias_handlers(dispatcher, websock_handlers_map_file):
for line in fp:
if line[0] == '#' or line.isspace():
continue
- m = re.match('(\S+)\s+(\S+)', line)
+ m = re.match(r'(\S+)\s+(\S+)', line)
if not m:
logging.warning('Wrong format in map file:' + line)
continue