Skip to content

Commit

Permalink
Fix delete hab to use the right name. (WebOfTrust#601)
Browse files Browse the repository at this point in the history
Signed-off-by: pfeairheller <[email protected]>
  • Loading branch information
pfeairheller authored Nov 10, 2023
1 parent f8ce4d3 commit 9dc2df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keri/app/habbing.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ def deleteHab(self, name):
if not hab:
return False

if not self.db.habs.rem(keys=self.name):
if not self.db.habs.rem(keys=(name,)):
return False

del self.habs[hab.pre]
Expand Down

0 comments on commit 9dc2df2

Please sign in to comment.