diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 8d05f0c3d8..709372e16f 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -256,7 +256,7 @@ class URI(object): | |||
256 | 256 | ||
257 | # Identify if the URI is relative or not | 257 | # Identify if the URI is relative or not |
258 | if urlp.scheme in self._relative_schemes and \ | 258 | if urlp.scheme in self._relative_schemes and \ |
259 | re.compile("^\w+:(?!//)").match(uri): | 259 | re.compile(r"^\w+:(?!//)").match(uri): |
260 | self.relative = True | 260 | self.relative = True |
261 | 261 | ||
262 | if not self.relative: | 262 | if not self.relative: |