diff --git a/bitbake/lib/bb/fetch2/ssh.py b/bitbake/lib/bb/fetch2/ssh.py index 2c8557e1f8..a104c9eb19 100644 --- a/bitbake/lib/bb/fetch2/ssh.py +++ b/bitbake/lib/bb/fetch2/ssh.py @@ -40,9 +40,9 @@ __pattern__ = re.compile(r''' ( # Optional username/password block (?P\S+) # username (:(?P\S+))? # colon followed by the password (optional) - )? (?P(;[^;]+)*)? # connection parameters block (optional) @ + )? (?P\S+?) # non-greedy match of the host (:(?P[0-9]+))? # colon followed by the port (optional) /