This commit is contained in:
Mr McClain 2016-04-14 08:05:36 -05:00
parent 3a508421be
commit adde2bb7a8

View File

@ -17,7 +17,7 @@ class MumbleManager:
@staticmethod
def __santatize_username(username):
sanatized = username.replace(" ", "_")
sanatized = sanatized.replace("'", "")
sanatized = sanatized.replace("'", "_")
return sanatized
@staticmethod