summaryrefslogtreecommitdiffstats
path: root/waflib/extras/remote.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 18:19:41 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 18:22:35 +0100
commite552da4b126600039339751343e9da6349972c1d (patch)
tree9945784581c196c6d95fd059a0df44dddf630649 /waflib/extras/remote.py
parentebd7013d42a1deec8f4cd10cae94e38d8e7cd424 (diff)
parente8b536a79e87e46ac662230ff7370d2162c837ae (diff)
downloaddrobillad-e552da4b126600039339751343e9da6349972c1d.tar.gz
drobillad-e552da4b126600039339751343e9da6349972c1d.tar.bz2
drobillad-e552da4b126600039339751343e9da6349972c1d.zip
Update autowaf and adapt to new API
Diffstat (limited to 'waflib/extras/remote.py')
-rw-r--r--waflib/extras/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waflib/extras/remote.py b/waflib/extras/remote.py
index 3b038f7..f43b600 100644
--- a/waflib/extras/remote.py
+++ b/waflib/extras/remote.py
@@ -203,7 +203,7 @@ class remote(BuildContext):
Options.commands.remove(k)
def login_to_host(self, login):
- return re.sub('(\w+@)', '', login)
+ return re.sub(r'(\w+@)', '', login)
def variant_to_login(self, variant):
"""linux_32_debug -> search env.LINUX_32 and then env.LINUX"""