Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 3, 2025
1 parent 288b022 commit 898220c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubespawner/slugs.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def multi_slug(names, max_length=48):
for name in names[1:]:
# \xFF can't occur as a start byte in UTF8
# so use it as a word delimiter to make sure overlapping words don't collide
hasher.update(b"\xFF")
hasher.update(b"\xff")
hasher.update(name.encode("utf8"))
hash = hasher.hexdigest()[:_hash_length]

Expand Down

0 comments on commit 898220c

Please sign in to comment.