Skip to content

Commit

Permalink
Allow traveral of non-secure notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Kraay committed Oct 15, 2021
1 parent cfb6406 commit dc98877
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bw_add_sshkeys.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ def add_ssh_keys(session, items, keyname):
except IndexError:
logging.warning('No "%s" field found for item %s', keyname, item['name'])
continue
except KeyError as e:
logging.debug('No key "%s" found in item %s - skipping', e.args[0], item['name'])
continue
logging.debug('Private key file declared')

try:
Expand Down

0 comments on commit dc98877

Please sign in to comment.