aboutsummaryrefslogtreecommitdiffstats
path: root/waflib/extras/remote.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 17:31:04 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 18:14:27 +0100
commite76724d58c39a52e3f47dbff40c011c54d9a0fdb (patch)
tree62c22e362068f8ab6e7e3a4597c65a7e55841943 /waflib/extras/remote.py
parent4044751b2b7c59b9f6943a0e951aa1fd7c3a2616 (diff)
parentc7034f97a9a966bb6c04e296fdae714e80237986 (diff)
downloadblop.lv2-master.tar.gz
blop.lv2-master.tar.bz2
blop.lv2-master.zip
Update autowaf and adapt to new APIHEADmaster
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"""