Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aioredis/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ def acl_setuser( # noqa: C901
pieces.append(b"<%s" % password[1:])
else:
raise DataError(
"Password %d must be prefixeed with a "
"Password %d must be prefixed with a "
'"+" to add or a "-" to remove' % i
)

Expand All @@ -1326,7 +1326,7 @@ def acl_setuser( # noqa: C901
pieces.append(b"!%s" % hashed_password[1:])
else:
raise DataError(
"Hashed %d password must be prefixeed "
"Hashed %d password must be prefixed "
'with a "+" to add or a "-" to remove' % i
)

Expand Down