diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 05999607b9..4335e7a0d8 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -321,9 +321,10 @@ class URI(object): | |||
321 | 321 | ||
322 | @username.setter | 322 | @username.setter |
323 | def username(self, username): | 323 | def username(self, username): |
324 | password = self.password | ||
324 | self.userinfo = username | 325 | self.userinfo = username |
325 | if self.password: | 326 | if password: |
326 | self.userinfo += ":%s" % self.password | 327 | self.userinfo += ":%s" % password |
327 | 328 | ||
328 | @property | 329 | @property |
329 | def password(self): | 330 | def password(self): |