Skip to content

Commit 85db1b6

Browse files
committed
switch back to dashes
1 parent a87e704 commit 85db1b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/thread.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,10 +742,10 @@ def format_channel_name(self, author):
742742
"".join(l for l in name if l not in string.punctuation and l.isprintable())
743743
or "null"
744744
)
745-
new_name += f"{author.discriminator}"
745+
new_name += f"-{author.discriminator}"
746746

747747
while new_name in [c.name for c in self.bot.modmail_guild.text_channels]:
748-
new_name += "x" # two channels with same name
748+
new_name += "-x" # two channels with same name
749749

750750
return new_name
751751

0 commit comments

Comments
 (0)