diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
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''' | |||
40 | ( # Optional username/password block | 40 | ( # Optional username/password block |
41 | (?P<user>\S+) # username | 41 | (?P<user>\S+) # username |
42 | (:(?P<pass>\S+))? # colon followed by the password (optional) | 42 | (:(?P<pass>\S+))? # colon followed by the password (optional) |
43 | )? | ||
44 | (?P<cparam>(;[^;]+)*)? # connection parameters block (optional) | 43 | (?P<cparam>(;[^;]+)*)? # connection parameters block (optional) |
45 | @ | 44 | @ |
45 | )? | ||
46 | (?P<host>\S+?) # non-greedy match of the host | 46 | (?P<host>\S+?) # non-greedy match of the host |
47 | (:(?P<port>[0-9]+))? # colon followed by the port (optional) | 47 | (:(?P<port>[0-9]+))? # colon followed by the port (optional) |
48 | / | 48 | / |