diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-05 14:17:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-16 08:19:34 +0000 |
commit | e1e38c9bd16220f78068299cd90692d96d045bf9 (patch) | |
tree | 61ea2bf816f730d2d48545facdce89b020e06131 /meta/lib/oeqa/selftest/cases/devtool.py | |
parent | 8d2dd4a30034559838e2433ad58aeffccaf40555 (diff) | |
download | poky-e1e38c9bd16220f78068299cd90692d96d045bf9.tar.gz |
lib/oe,oeqa/selftest: Fix DeprecationWarning: invalid escape sequence
Fix another load of regex escape sequence warnings for newer
python versions.
(From OE-Core rev: bd2c125bb9c362b6122e99dfdf4e1cfe12c26a90)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/devtool.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/devtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index 9eb9badf84..58f3e58461 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py | |||
@@ -1291,7 +1291,7 @@ class DevtoolExtractTests(DevtoolBase): | |||
1291 | installdir = bb_vars['D'] | 1291 | installdir = bb_vars['D'] |
1292 | fakerootenv = bb_vars['FAKEROOTENV'] | 1292 | fakerootenv = bb_vars['FAKEROOTENV'] |
1293 | fakerootcmd = bb_vars['FAKEROOTCMD'] | 1293 | fakerootcmd = bb_vars['FAKEROOTCMD'] |
1294 | result = runCmd('%s %s find . -type f -exec ls -l {} \;' % (fakerootenv, fakerootcmd), cwd=installdir) | 1294 | result = runCmd('%s %s find . -type f -exec ls -l {} \\;' % (fakerootenv, fakerootcmd), cwd=installdir) |
1295 | filelist1 = self._process_ls_output(result.output) | 1295 | filelist1 = self._process_ls_output(result.output) |
1296 | 1296 | ||
1297 | # Now look on the target | 1297 | # Now look on the target |