Skip to content

Commit

Permalink
Fix method name
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed May 24, 2024
1 parent 5204fe0 commit eb778ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ykman/_cli/securedomain.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,4 +382,4 @@ def set_allowlist(ctx, key, serials):
_require_auth(ctx)
session = ctx.obj["session"]

session.set_allowlist(key, serials)
session.store_allowlist(key, serials)
2 changes: 1 addition & 1 deletion yubikit/securedomain.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def store_certificate_bundle(
)
logger.info("Certificate bundle stored")

def store_allow_list(self, key: KeyRef, serials: Sequence[int]) -> None:
def store_allowlist(self, key: KeyRef, serials: Sequence[int]) -> None:
"""Store which certificate serial numbers that can be used for a given key.
Requires OCE verification.
Expand Down

0 comments on commit eb778ed

Please sign in to comment.