Revert "Don't allow spaces in devicename"
This reverts commit 2e5249ca4f
.
This commit is contained in:
parent
038477fa77
commit
075b28aa51
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ DEVICENAME = DEVICENAME.replace("?", "")
|
||||||
DEVICENAME = DEVICENAME.replace('|', "")
|
DEVICENAME = DEVICENAME.replace('|', "")
|
||||||
DEVICENAME = DEVICENAME.replace('(', "")
|
DEVICENAME = DEVICENAME.replace('(', "")
|
||||||
DEVICENAME = DEVICENAME.replace(')', "")
|
DEVICENAME = DEVICENAME.replace(')', "")
|
||||||
DEVICENAME = DEVICENAME.replace(' ', "")
|
DEVICENAME = DEVICENAME.strip()
|
||||||
|
|
||||||
COMPANION_PORT = int(_ADDON.getSetting('companionPort'))
|
COMPANION_PORT = int(_ADDON.getSetting('companionPort'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue