webssh

Web based ssh client https://github.com/huashengdun/webssh webssh.huashengdun.org/
git clone http://git.hanabi.in/repos/webssh.git
Log | Files | Refs | README | LICENSE

commit 1a9ba5bb3167d0deb5a37c289ba43d517c7d095d
parent dc8016d21b87a3dc0803ee229ee00cf34634fd35
Author: khuxkm fbexl <khuxkm@ttm.sh>
Date:   Fri,  6 Sep 2019 13:50:38 -0400

Fix wrong password method to also say 'passphrase'

Diffstat:
Mwebssh/handler.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webssh/handler.py b/webssh/handler.py @@ -158,7 +158,7 @@ class PrivateKey(object): logging.error(str(exc)) msg = 'Invalid key' if self.password: - msg += ' or wrong password "{}" for decrypting it.'.format( + msg += ' or wrong passphrase "{}" for decrypting it.'.format( self.password) raise InvalidValueError(msg)