diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py')
-rwxr-xr-x | tests/wpt/web-platform-tests/tools/pywebsocket/mod_pywebsocket/standalone.py | 2 |
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 |