diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-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 9499a911b5..8f195f2cd9 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -329,7 +329,7 @@ def decodeurl(url): | |||
329 | user, password, parameters). | 329 | user, password, parameters). |
330 | """ | 330 | """ |
331 | 331 | ||
332 | m = re.compile('(?P<type>[^:]*)://((?P<user>.+)@)?(?P<location>[^;]+)(;(?P<parm>.*))?').match(url) | 332 | m = re.compile('(?P<type>[^:]*)://((?P<user>[^/]+)@)?(?P<location>[^;]+)(;(?P<parm>.*))?').match(url) |
333 | if not m: | 333 | if not m: |
334 | raise MalformedUrl(url) | 334 | raise MalformedUrl(url) |
335 | 335 | ||