Browse Source

fix password being ignored

master
evan 2 years ago
parent
commit
19c5054a21
  1. 3
      remarkable_mouse/remarkable_mouse.py

3
remarkable_mouse/remarkable_mouse.py

@ -37,7 +37,6 @@ def open_rm_inputs(*, address, key, password): @@ -37,7 +37,6 @@ def open_rm_inputs(*, address, key, password):
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
pkey = None
password = None
agent = paramiko.agent.Agent()
@ -60,7 +59,7 @@ def open_rm_inputs(*, address, key, password): @@ -60,7 +59,7 @@ def open_rm_inputs(*, address, key, password):
elif os.path.exists(default_key):
password = None
pkey = use_key(default_key)
elif password:
elif password is not None:
pkey = None
elif not agent.get_keys():
password = getpass(

Loading…
Cancel
Save