Skip to content

Commit

Permalink
v0.7.5: Fixed typo leading to an exception in auto_encrypt when a key…
Browse files Browse the repository at this point in the history
… associated with a given uid isn't already in the package keyring.
  • Loading branch information
rmlibre committed May 1, 2021
1 parent c833b62 commit 18fadc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiny_gnupg/tiny_gnupg.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ async def auto_encrypt(
except LookupError as uid:
await self.network_import(uid.value)
return self.encrypt(
message, uid, sign=sign, local_user=local_user
message, uid.value, sign=sign, local_user=local_user
)

def decrypt(self, message="", *, local_user=None):
Expand Down

0 comments on commit 18fadc2

Please sign in to comment.