No coverage testing for this

This commit is contained in:
Oliver Falk
2018-05-25 09:24:56 +02:00
parent dbf4e54803
commit da37ef4768

View File

@@ -251,7 +251,7 @@ class ConfirmedOpenId(BaseAccountModel):
def save(self, *args, **kwargs): def save(self, *args, **kwargs):
url = urlsplit(self.openid) url = urlsplit(self.openid)
if url.username: if url.username: # pragma: no cover
password = url.password or '' password = url.password or ''
netloc = url.username + ':' + password + '@' + url.hostname netloc = url.username + ':' + password + '@' + url.hostname
else: else: