diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/recipetool.py')
| -rw-r--r-- | meta/lib/oeqa/selftest/recipetool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py index e72911b0aa..a93d18e275 100644 --- a/meta/lib/oeqa/selftest/recipetool.py +++ b/meta/lib/oeqa/selftest/recipetool.py | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | import os | 1 | import os |
| 2 | import logging | 2 | import logging |
| 3 | import tempfile | 3 | import tempfile |
| 4 | import urlparse | 4 | import urllib.parse |
| 5 | 5 | ||
| 6 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, create_temp_layer | 6 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, create_temp_layer |
| 7 | from oeqa.utils.decorators import testcase | 7 | from oeqa.utils.decorators import testcase |
| @@ -471,7 +471,7 @@ class RecipetoolAppendsrcBase(RecipetoolBase): | |||
| 471 | '''Return the first file:// in SRC_URI for the specified recipe.''' | 471 | '''Return the first file:// in SRC_URI for the specified recipe.''' |
| 472 | src_uri = get_bb_var('SRC_URI', recipe).split() | 472 | src_uri = get_bb_var('SRC_URI', recipe).split() |
| 473 | for uri in src_uri: | 473 | for uri in src_uri: |
| 474 | p = urlparse.urlparse(uri) | 474 | p = urllib.parse.urlparse(uri) |
| 475 | if p.scheme == 'file': | 475 | if p.scheme == 'file': |
| 476 | return p.netloc + p.path | 476 | return p.netloc + p.path |
| 477 | 477 | ||
