diff --git a/kubespawner/slugs.py b/kubespawner/slugs.py index 2cf49b04..3094d2b2 100644 --- a/kubespawner/slugs.py +++ b/kubespawner/slugs.py @@ -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]