Skip to content

Commit

Permalink
SRAM: fix unsupported character in short names
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Nov 24, 2023
1 parent 10eebe6 commit 61680e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ def unique_short_name(ctx, group_name):
short_name = blake2b(digest_size=7)
short_name.update(concat_string.encode())

return "y-{}".format(short_name.hexdigest())
return "y_{}".format(short_name.hexdigest())

0 comments on commit 61680e6

Please sign in to comment.