'srt' -> 'str'

closes #152
This commit is contained in:
jesopo 2019-09-17 12:23:05 +01:00
parent 1ed14f9a17
commit f2f09bf0ca

View file

@ -9,7 +9,7 @@ def _parse(s):
if not port.isdigit():
return None
else:
port = srt(DEFAULT_PORT)
port = str(DEFAULT_PORT)
return "%s:%s" % (host, port)
SETTING = utils.FunctionSetting(_parse, "mumble-server",