diff options
Diffstat (limited to 'bitbake')
-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 70387f52db..760e24f039 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -356,7 +356,7 @@ def decodeurl(url): | |||
356 | user, password, parameters). | 356 | user, password, parameters). |
357 | """ | 357 | """ |
358 | 358 | ||
359 | m = re.compile('(?P<type>[^:]*)://((?P<user>[^/]+)@)?(?P<location>[^;]+)(;(?P<parm>.*))?').match(url) | 359 | m = re.compile('(?P<type>[^:]*)://((?P<user>[^/;]+)@)?(?P<location>[^;]+)(;(?P<parm>.*))?').match(url) |
360 | if not m: | 360 | if not m: |
361 | raise MalformedUrl(url) | 361 | raise MalformedUrl(url) |
362 | 362 | ||