Added fix to the mumble name generation when a " ' " is present

This commit is contained in:
Raynaldo Rivera 2014-10-23 01:20:22 -07:00
parent cabd0a87f1
commit d1159d177a

View File

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