Evidlo / remarkable_mouse

use your reMarkable as a graphics tablet
GNU General Public License v3.0
514 stars 49 forks source link

fix: password prompt for private key #81

Closed laib3 closed 1 year ago

laib3 commented 1 year ago

use_key function was catching paramiko.ssh_exception.SSHException before paramiko.ssh_exception.PasswordRequiredException. However, since SSHException is a superclass of PasswordRequiredException, this latter one was never catched, and so the password prompt was never displayed.

Evidlo commented 1 year ago

Thanks for the contribution!