Fix incorrect log message

In pygit2, the ssh transport doesn't accept password auth.
This commit is contained in:
Erik Johnson 2015-04-17 12:55:10 -05:00
parent 2093bf8d96
commit 09468d2607

View file

@ -596,8 +596,8 @@ def _verify_auth(repo):
if user == address:
# No '@' sign == no user. This is a problem.
log.critical(
'Password / keypair specified for remote {0}, but remote '
'URL is missing a username'.format(repo['url'])
'Keypair specified for remote {0}, but remote URL is missing '
'a username'.format(repo['url'])
)
_failhard()