Skip to content

Commit

Permalink
swapnil290502
Browse files Browse the repository at this point in the history
borgbase#1215  solved
removed key from keyring
  • Loading branch information
swapnil290502 authored Feb 6, 2023
1 parent a4ab7e7 commit 870aa14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vorta/keyring/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_keyring(cls):
logger.debug(e)
continue

for keyring, _ in sorted(available_keyrings, key=lambda k: k[1], reverse=True):
for keyring, _ in sorted(available_keyrings, reverse=True):
try:
instance = keyring()
logger.debug(f"Using {keyring.__name__}")
Expand Down

0 comments on commit 870aa14

Please sign in to comment.